KNU_SpaceShooter/Assets/02_Scripts/PlayerController.cs
2024-09-11 13:45:36 +09:00

18 lines
309 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
void Start()
{
}
void Update()
{
// transform.position += new Vector3(0, 0, 1) * 0.01f;
transform.position += Vector3.forward * 0.01f;
}
}