Esempio n. 1
0
 private void TouchStopped(ETouchIndex fingerIndex, FVector location)
 {
     // Cease jumping once touch stopped
     StopJumping();
 }
Esempio n. 2
0
 private void TouchStart(ETouchIndex fingerIndex, FVector location)
 {
     // Jump on any touch
     Jump();
 }
Esempio n. 3
0
 /// <summary>Retrieves the X and Y screen coordinates of the specified touch key. Returns false if the touch index is not down</summary>
 public extern void GetInputTouchState(ETouchIndex FingerIndex, out float LocationX, out float LocationY, out bool bIsCurrentlyPressed);
Esempio n. 4
0
 protected override void ReceiveActorOnInputTouchBegin_Implementation(ETouchIndex FingerIndex)
 {
     base.ReceiveActorOnInputTouchBegin_Implementation(FingerIndex);
     HandleControllerClick();
 }
Esempio n. 5
0
 public extern bool GetHitResultUnderFingerByChannel(ETouchIndex FingerIndex, ETraceTypeQuery TraceChannel, bool bTraceComplex, out FHitResult HitResult);