mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
18 lines
444 B
C#
18 lines
444 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms.MonoHooks
|
|
{
|
|
/// <summary>
|
|
/// Mono Hook for [`LateUpdate`](https://docs.unity3d.com/ScriptReference/MonoBehaviour.LateUpdate.html)
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-delicate")]
|
|
[AddComponentMenu("Unity Atoms/Hooks/On Late Update Hook")]
|
|
public sealed class OnLateUpdateHook : VoidHook
|
|
{
|
|
private void LateUpdate()
|
|
{
|
|
OnHook();
|
|
}
|
|
}
|
|
}
|