Answers for "unity axis"

C#
0

unity input get axis

float movement = Input.GetAxis("Horizontal") * speed;
Posted by: Guest on March-13-2020
0

get axis unity

using UnityEngine;
using System.Collections;

public class AxisRawExample : MonoBehaviour
{
    public float range;
    public GUIText textOutput;
    
    
    void Update () 
    {
        float h = Input.GetAxisRaw("Horizontal");
        float xPos = h * range;
        
        transform.position = new Vector3(xPos, 2f, 0);
        textOutput.text = "Value Returned: "+h.ToString("F2");  
    }
}
Posted by: Guest on July-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language