44 lines
824 B
C#
44 lines
824 B
C#
// (c) Copyright HutongGames, LLC 2010-2013. All rights reserved.
|
|
|
|
using UnityEngine;
|
|
|
|
namespace HutongGames.PlayMaker.Actions
|
|
{
|
|
[ActionCategory(ActionCategory.Device)]
|
|
[Tooltip("Gets the number of Touches.")]
|
|
public class GetTouchCount : FsmStateAction
|
|
{
|
|
[RequiredField]
|
|
[UIHint(UIHint.Variable)]
|
|
[Tooltip("Store the current number of touches in an Int Variable.")]
|
|
public FsmInt storeCount;
|
|
|
|
[Tooltip("Repeat every frame.")]
|
|
public bool everyFrame;
|
|
|
|
public override void Reset()
|
|
{
|
|
storeCount = null;
|
|
everyFrame = false;
|
|
}
|
|
|
|
public override void OnEnter()
|
|
{
|
|
DoGetTouchCount();
|
|
|
|
if (!everyFrame)
|
|
Finish();
|
|
}
|
|
|
|
public override void OnUpdate()
|
|
{
|
|
DoGetTouchCount();
|
|
}
|
|
|
|
void DoGetTouchCount()
|
|
{
|
|
storeCount.Value = Input.touchCount;
|
|
}
|
|
|
|
}
|
|
} |