2026-07-08 유나 프로토타입버전 추가
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Bozo.AnimeCharacters
|
||||
{
|
||||
public class ToonFaceRelay : MonoBehaviour
|
||||
{
|
||||
private ToonFacialAnimator animator;
|
||||
|
||||
|
||||
private void Start()
|
||||
{
|
||||
var sys = GetComponentInParent<OutfitSystem>();
|
||||
animator = sys.GetComponentInChildren<ToonFacialAnimator>();
|
||||
}
|
||||
public void SetFace(int preset)
|
||||
{
|
||||
if (animator == null) return;
|
||||
animator.SetFace(preset);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user