浏览代码

Prevent children on AnimEvents

trethaller 6 年之前
父节点
当前提交
85a39e31d9
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      hide/prefab/fx/AnimEvent.hx

+ 3 - 1
hide/prefab/fx/AnimEvent.hx

@@ -95,7 +95,9 @@ class AnimEvent extends hide.prefab.fx.Event {
 	override function getHideProps() : HideProps {
 		return {
 			icon : "play-circle", name : "AnimEvent",
-			allowParent : (p) -> p.to(Model) != null };
+			allowParent : (p) -> p.to(Model) != null,
+			allowChildren: function(s) return false
+		};
 	}
 
 	override function getDisplayInfo(ctx: EditContext) {