not reading material csv issue fixed

This commit is contained in:
minjaesong
2019-03-12 00:47:06 +09:00
parent 7171055016
commit bae9c60c81
12 changed files with 124 additions and 60 deletions

View File

@@ -881,6 +881,10 @@ public class AppLoader implements ApplicationListener {
}
}
public static void printmsg(Object obj, Object message) {
System.out.println("[" + obj.getClass().getSimpleName() + "] " + message.toString());
}
public static ShaderProgram loadShader(String vert, String frag) {
ShaderProgram s = new ShaderProgram(Gdx.files.internal(vert), Gdx.files.internal(frag));