unity-atoms/Source/MonoHooks/OnFixedUpdateHook.cs
2019-05-29 18:52:27 +02:00

14 lines
257 B
C#

using UnityEngine;
namespace UnityAtoms
{
[AddComponentMenu("Unity Atoms/Hooks/On Fixed Update")]
public sealed class OnFixedUpdateHook : VoidHook
{
private void FixedUpdate()
{
OnHook(new Void());
}
}
}