miepzerino
2023-12-19 a0231b6896566ce8595d1e2cd5d26b6792867ece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using Assets.Scripts.Enums;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
public class PlayOneShotBehaviour : StateMachineBehaviour
{
    public SoundName audioClipName;
    public bool playOnEnter = true, playOnExit = false, playAfterDelay = false;
 
    // Delayed sound timer
    public float playDelay = 0.25f;
    private float timeSinceEntered = 0f;
    private bool hasDelayedSoundPlayed = false;
 
    //OnStateEnter is called when a transition starts and the state machine starts to evaluate this state
    override public void OnStateEnter(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
    {
        if (playOnEnter)
        {
            SoundManager.instance.PlaySoundAtPoint(animator.gameObject, audioClipName);
        }
    }
 
    //OnStateUpdate is called on each Update frame between OnStateEnter and OnStateExit callbacks
    override public void OnStateUpdate(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
    {
        if (playAfterDelay && !hasDelayedSoundPlayed)
        {
            timeSinceEntered += Time.deltaTime;
 
            if (timeSinceEntered > playDelay)
            {
                SoundManager.instance.PlaySoundAtPoint(animator.gameObject, audioClipName);
                hasDelayedSoundPlayed = true;
            }
        }
 
    }
 
    //OnStateExit is called when a transition ends and the state machine finishes evaluating this state
    override public void OnStateExit(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
    {
        if (playOnExit)
        {
            SoundManager.instance.PlaySoundAtPoint(animator.gameObject, audioClipName);
        }
 
    }
}