UnityのCrossPlatformInputを使う その6 MobileTiltControlRig編
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityStandardAssets.CrossPlatformInput; | |
public class Test : MonoBehaviour | |
{ | |
[SerializeField] | |
private float m_speedScale = 3.0f; | |
void Update() | |
{ | |
float vertical = CrossPlatformInputManager.GetAxis( "Vertical" ); | |
float horizontal = CrossPlatformInputManager.GetAxis( "Horizontal" ); | |
Vector3 addPos = new Vector3( horizontal, vertical, 0.0f ) * m_speedScale; | |
transform.position += addPos * Time.deltaTime; | |
} | |
} // class Test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment