Degulleo3D/Assets/Scripts/Tutorial/PanelTmpController.cs
2025-05-14 19:29:08 +09:00

16 lines
480 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(InteractionAnimationPanelController))]
public class PanelTmpController : MonoBehaviour
{
InteractionAnimationPanelController interactionAnimationPanelController;
private void Awake()
{
interactionAnimationPanelController = GetComponent<InteractionAnimationPanelController>();
interactionAnimationPanelController.TutorialSleepAnimation();
}
}