示例#1
0
 private void TouchStopped(ETouchIndex fingerIndex, FVector location)
 {
     // Cease jumping once touch stopped
     StopJumping();
 }
示例#2
0
 private void TouchStart(ETouchIndex fingerIndex, FVector location)
 {
     // Jump on any touch
     Jump();
 }
示例#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);
示例#4
0
 protected override void ReceiveActorOnInputTouchBegin_Implementation(ETouchIndex FingerIndex)
 {
     base.ReceiveActorOnInputTouchBegin_Implementation(FingerIndex);
     HandleControllerClick();
 }
示例#5
0
 public extern bool GetHitResultUnderFingerByChannel(ETouchIndex FingerIndex, ETraceTypeQuery TraceChannel, bool bTraceComplex, out FHitResult HitResult);