Browse Source

added dump info

ncannasse 7 years ago
parent
commit
34fe479d26
1 changed files with 2 additions and 0 deletions
  1. 2 0
      hxd/fmt/hmd/Dump.hx

+ 2 - 0
hxd/fmt/hmd/Dump.hx

@@ -63,6 +63,8 @@ class Dump {
 			add('Blend : ${m.blendMode}');
 			add('Cull : ${m.culling}');
 			if( m.diffuseTexture != null ) add('Texture : ${m.diffuseTexture}');
+			if( m.specularTexture != null ) add('Specular : ${m.specularTexture}');
+			if( m.normalMap != null ) add('Normal : ${m.normalMap}');
 			if( m.killAlpha != null ) add('KillAlpha : ${m.killAlpha}');
 			addProps(m.props);
 			for( f in flags )