Explorar el Código

check that shaders list is not null
(it is null on js target for some objects)

Ivan Tivonenko hace 11 años
padre
commit
77e07a72b2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      h2d/Drawable.hx

+ 1 - 1
h2d/Drawable.hx

@@ -94,7 +94,7 @@ class Drawable extends Sprite {
 	}
 
 	public function getShader< T:hxsl.Shader >( stype : Class<T> ) : T {
-		for( s in shaders )
+		if (shaders != null) for( s in shaders )
 			if( Std.is(s, stype) )
 				return cast s;
 		return null;