Files
real-shooter/Assets/Scripts/Character/DumbAI.cs
2022-04-19 23:11:33 +07:00

20 lines
385 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DumbAI : MonoBehaviour
{
public Transform feetTransform;
// Start is called before the first frame update
void Start()
{
var current_position = feetTransform.transform.position;
}
// Update is called once per frame
void Update()
{
}
}