ncannasse 11 years ago
parent
commit
b2f3b30aae
1 changed files with 1 additions and 2 deletions
  1. 1 2
      h2d/Sprite.hx

+ 1 - 2
h2d/Sprite.hx

@@ -4,7 +4,6 @@ import hxd.Math;
 @:allow(h2d.Tools)
 @:allow(h2d.Tools)
 class Sprite {
 class Sprite {
 
 
-	static var tmpMatrix = new h3d.Matrix();
 	var childs : Array<Sprite>;
 	var childs : Array<Sprite>;
 	public var parent(default, null) : Sprite;
 	public var parent(default, null) : Sprite;
 	public var numChildren(get, never) : Int;
 	public var numChildren(get, never) : Int;
@@ -443,5 +442,5 @@ class Sprite {
 		var c = Type.getClassName(Type.getClass(this));
 		var c = Type.getClassName(Type.getClass(this));
 		return name == null ? c : name + "(" + c + ")";
 		return name == null ? c : name + "(" + c + ")";
 	}
 	}
-	
+
 }
 }