Unity: Animationのeventをoffにしたい
やりたいこと 特定のシーンでのみanimationのeventを無効化したい。 やり方 Is it possible to turn off/suppress event calls in an animation at runtime? - Unity Answers GetComponent<Animator>().fireEvents = false; でeventがoffになります 備考 animationのeventを削除するという考えもできますが、削除してしまうと他のインスタンスと削除された状態が共有されてしまうので、別のシーンに移ってもanimationのeventが削除されたま…
2021/02/25 09:00