فهرست منبع

Can add event in animations

Fl0xer 7 سال پیش
والد
کامیت
a630e5253b
1فایلهای تغییر یافته به همراه9 افزوده شده و 0 حذف شده
  1. 9 0
      h3d/anim/Animation.hx

+ 9 - 0
h3d/anim/Animation.hx

@@ -87,6 +87,15 @@ class Animation {
 		}
 	}
 
+	public function addEvent(frame : Int, data : String) {
+		if (events == null)
+			events = [];
+		if (events[frame] == null)
+			events[frame] = [data];
+		else
+			events[frame].push(data);
+	}
+
 	public function setFrame( f : Float ) {
 		frame = f;
 		lastEvent = -1;