FirstComit

This commit is contained in:
2026-05-13 14:47:38 +09:00
parent a1288e1696
commit 6d37110cf3
115 changed files with 44236 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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()
{
}
}