Files
2DSlimeAnimation/Assets/Script/BushBehabior.cs
2026-05-13 14:47:38 +09:00

21 lines
364 B
C#

using System;
using Unity.VisualScripting;
using UnityEngine;
public class BushBehabior : MonoBehaviour
{
[SerializeField] Transform core;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}