Browse Source

Fix import

ShiroSmith 4 years ago
parent
commit
fb2a66b3c4
1 changed files with 1 additions and 2 deletions
  1. 1 2
      hrt/prefab/Curve.hx

+ 1 - 2
hrt/prefab/Curve.hx

@@ -1,5 +1,4 @@
 package hrt.prefab;
 package hrt.prefab;
-import hide.comp.CurveEditor;
 using Lambda;
 using Lambda;
 
 
 class CurveHandle {
 class CurveHandle {
@@ -271,7 +270,7 @@ class Curve extends Prefab {
 			ctx.onChange(this, pname);
 			ctx.onChange(this, pname);
 		});
 		});
 
 
-		var ce = new CurveEditor(ctx.properties.undo, ctx.properties.element);
+		var ce = new hide.comp.CurveEditor(ctx.properties.undo, ctx.properties.element);
 		ce.curve = this;
 		ce.curve = this;
 	}
 	}