فهرست منبع

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

Ivan Tivonenko 11 سال پیش
والد
کامیت
77e07a72b2
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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;