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