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

GlobalEventUnit.cs 374B

1234567891011121314
  1. namespace Unity.VisualScripting
  2. {
  3. public abstract class GlobalEventUnit<TArgs> : EventUnit<TArgs>
  4. {
  5. protected override bool register => true;
  6. protected virtual string hookName => throw new InvalidImplementationException();
  7. public override EventHook GetHook(GraphReference reference)
  8. {
  9. return hookName;
  10. }
  11. }
  12. }