mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 10:29:22 +00:00
Switch to named arguments for nightly compatibility
This commit is contained in:
parent
ecba461845
commit
df46abbae4
2 changed files with 4 additions and 4 deletions
|
@ -112,11 +112,11 @@ namespace ml_lme
|
|||
}
|
||||
}
|
||||
|
||||
static void OnRayScale_Postfix(float __0)
|
||||
static void OnRayScale_Postfix(float scale)
|
||||
{
|
||||
try
|
||||
{
|
||||
OnRayScale.Invoke(__0);
|
||||
OnRayScale.Invoke(scale);
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
|
|
|
@ -132,11 +132,11 @@ namespace ml_pam
|
|||
}
|
||||
}
|
||||
|
||||
static void OnCVRPickupObjectGrab_Postfix(ref CVRPickupObject __instance, Vector3 __0)
|
||||
static void OnCVRPickupObjectGrab_Postfix(ref CVRPickupObject __instance, Vector3 hitPoint)
|
||||
{
|
||||
try
|
||||
{
|
||||
OnPickupGrab.Invoke(__instance, __0);
|
||||
OnPickupGrab.Invoke(__instance, hitPoint);
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue