Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.Flow /Framework /Events /ManualEventUnit.cs
| namespace Unity.VisualScripting | |
| { | |
| public abstract class ManualEventUnit<TArgs> : EventUnit<TArgs> | |
| { | |
| protected sealed override bool register => false; | |
| protected abstract string hookName { get; } | |
| public sealed override EventHook GetHook(GraphReference reference) | |
| { | |
| return hookName; | |
| } | |
| } | |
| } | |