20 lines
385 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|