Files
2026-02-18 00:08:49 +02:00

19 lines
333 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PoliceIdle : MonoBehaviour
{
private Animator animator;
void Start()
{
animator = GetComponent<Animator>();
if (animator != null)
{
animator.Play("idle_selfcheck_1_300f");
}
}
}