14 lines
386 B
C#
14 lines
386 B
C#
using UnityEngine;
|
|
|
|
public class MovingSphere : MonoBehaviour
|
|
{
|
|
private void Update()
|
|
{
|
|
Vector2 playerInput;
|
|
playerInput.x = Input.GetAxis("Horizontal");
|
|
playerInput.y = Input.GetAxis("Vertical");
|
|
playerInput = Vector2.ClampMagnitude(playerInput, 1f);
|
|
transform.localPosition = new Vector3(playerInput.x, 0.5f, playerInput.y);
|
|
}
|
|
}
|