22 lines
380 B
C#
22 lines
380 B
C#
using Core.SaveLoad;
|
|
using UnityEditor.Animations;
|
|
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class FrakkeRevUpCrashBehaviour : MonoBehaviour
|
|
{
|
|
public Animator FrakkeAnimControllerRef;
|
|
|
|
private void OnEnable()
|
|
{
|
|
if (FrakkeAnimControllerRef != null)
|
|
{
|
|
FrakkeAnimControllerRef.SetTrigger("SpeedsOff");
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|