Explorar o código

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

Ivan Tivonenko %!s(int64=11) %!d(string=hai) anos
pai
achega
77e07a72b2
Modificáronse 1 ficheiros con 1 adicións e 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;