You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
872 B
50 lines
872 B
using System; |
|
using UnityEngine; |
|
|
|
namespace UnityStandardAssets.CrossPlatformInput |
|
{ |
|
public class ButtonHandler : MonoBehaviour |
|
{ |
|
|
|
public string Name; |
|
|
|
void OnEnable() |
|
{ |
|
|
|
} |
|
|
|
public void SetDownState() |
|
{ |
|
CrossPlatformInputManager.SetButtonDown(Name); |
|
} |
|
|
|
|
|
public void SetUpState() |
|
{ |
|
CrossPlatformInputManager.SetButtonUp(Name); |
|
} |
|
|
|
|
|
public void SetAxisPositiveState() |
|
{ |
|
CrossPlatformInputManager.SetAxisPositive(Name); |
|
} |
|
|
|
|
|
public void SetAxisNeutralState() |
|
{ |
|
CrossPlatformInputManager.SetAxisZero(Name); |
|
} |
|
|
|
|
|
public void SetAxisNegativeState() |
|
{ |
|
CrossPlatformInputManager.SetAxisNegative(Name); |
|
} |
|
|
|
public void Update() |
|
{ |
|
|
|
} |
|
} |
|
}
|
|
|