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

14 lines
254 B
C#

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