2026-07-09 꼬리밟는씬 제작중

This commit is contained in:
2026-07-09 11:35:29 +09:00
parent fb51c2e2a3
commit c21436705e
137 changed files with 6277 additions and 352 deletions

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 2e66fffe350c8eb42939cd3bb26a8fc5
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,16 @@
using UnityEngine;
public class NPCController : MonoBehaviour
{
private Animator _anim;
private void Awake()
{
_anim = GetComponent<Animator>();
}
public void SetAnimState(int animNo)
{
_anim.SetFloat("AnimNo", (float)animNo);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: e319b8275aede7548aa9783c717e726f