26 lines
758 B
C#
26 lines
758 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class NewBehaviourScript : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
/*QualitySettings.vSyncCount = 0;
|
|
Application.targetFrameRate = 50;*/
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
float horizontal = Input.GetAxis("Horizontal");
|
|
float vertical = Input.GetAxis("Vertical");
|
|
Debug.Log(horizontal);
|
|
Vector2 position = transform.position;
|
|
position.x = position.x + 3.0f * horizontal * Time.deltaTime;
|
|
position.y = position.y + 3.0f * vertical * Time.deltaTime;
|
|
transform.position = position;
|
|
}
|
|
}
|