暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MachineEventUnit.cs 451B

1234567891011121314
  1. namespace Unity.VisualScripting
  2. {
  3. public abstract class MachineEventUnit<TArgs> : EventUnit<TArgs>
  4. {
  5. protected sealed override bool register => true;
  6. public override EventHook GetHook(GraphReference reference)
  7. {
  8. return new EventHook(hookName, reference.machine);
  9. }
  10. protected virtual string hookName => throw new InvalidImplementationException($"Missing event hook for '{this}'.");
  11. }
  12. }