You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <summary>Return true only during the frame the selection button is pressed but was not pressed the frame before (like Input.GetButtonDown()).</summary>
177
+
*/
178
+
internalboolGetInputSelect()
179
+
{
180
+
returnInput.GetButtonDown("RayCursorSelect");
181
+
}
182
+
183
+
/**
184
+
* <summary>Return true during all the frames the touchpad is touched.</summary>
185
+
*/
186
+
internalboolGetInputTouch()
187
+
{
188
+
returnInput.GetButton("RayCursorTouch");
189
+
}
190
+
191
+
internalfloatGetInputTouchY()
192
+
{
193
+
returnInput.GetAxis("RayCursorTouchY");
194
+
}
155
195
}
156
196
157
197
@@ -330,8 +370,8 @@ public CursorTransferFunction(RayCursor cM)
0 commit comments