Skip to content

Commit

Permalink
🐛 fix(saccflight): Remove definition
Browse files Browse the repository at this point in the history
  • Loading branch information
esnya committed Jul 7, 2022
1 parent 57a2388 commit a3c6dc9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ private float Frequency
}
}

#if URC_SF
private string triggerAxis;
private VRCPlayerApi.TrackingDataType trackingTarget;
public void DFUNC_LeftDial()
Expand Down Expand Up @@ -128,7 +127,5 @@ private void LateUpdate()
prevTriggered = trigger;
}
}

#endif
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class DFUNC_URC_PTT : UdonSharpBehaviour
public KeyCode desktopKey = KeyCode.P;
public Transmitter transmitter;

#if URC_SF
private string triggerAxis;
public void DFUNC_LeftDial()
{
Expand Down Expand Up @@ -91,6 +90,5 @@ private bool GetInput()
{
return Input.GetKey(desktopKey) || Input.GetAxisRaw(triggerAxis) > 0.75f;
}
#endif
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public class SFComInjector : UdonSharpBehaviour
{
public Transform inVehicleOnly, seatedPlayerOnly;

#if URC_SF
private void Start()
{
SendCustomEventDelayedSeconds(nameof(_Inject), 10);
Expand Down Expand Up @@ -54,6 +53,5 @@ private GameObject GetSeatOnly()
if (seat != null) return (GameObject)seat.GetProgramVariable("ThisSeatOnly");
return null;
}
#endif
}
}

0 comments on commit a3c6dc9

Please sign in to comment.