Explorar o código

Fix spelling error in error mesage in Animation.hx (#1111)

instanciate -> instantiate
TZer0 %!s(int64=2) %!d(string=hai) anos
pai
achega
3f02d246a0
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      h3d/anim/Animation.hx

+ 2 - 2
h3d/anim/Animation.hx

@@ -209,7 +209,7 @@ class Animation {
 
 	public function update(dt:Float) : Float {
 		if( !isInstance )
-			throw "You must instanciate this animation first";
+			throw "You must instantiate this animation first";
 
 		if( !isPlaying() )
 			return 0;
@@ -282,4 +282,4 @@ class Animation {
 		return name;
 	}
 
-}
+}