WIP unification and cleanup of rendering in editor
This commit is contained in:
@@ -273,7 +273,6 @@ public class Mods implements Loadable{
|
||||
ObjectMap<Texture, PageType> pageTypes = ObjectMap.of(
|
||||
Core.atlas.find("white").texture, PageType.main,
|
||||
Core.atlas.find("stone1").texture, PageType.environment,
|
||||
Core.atlas.find("clear-editor").texture, PageType.editor,
|
||||
Core.atlas.find("whiteui").texture, PageType.ui,
|
||||
Core.atlas.find("rubble-1-0").texture, PageType.rubble
|
||||
);
|
||||
@@ -405,7 +404,6 @@ public class Mods implements Loadable{
|
||||
String path = file.path();
|
||||
return
|
||||
path.contains("sprites/blocks/environment") || path.contains("sprites-override/blocks/environment") ? PageType.environment :
|
||||
path.contains("sprites/editor") || path.contains("sprites-override/editor") ? PageType.editor :
|
||||
path.contains("sprites/rubble") || path.contains("sprites-override/rubble") ? PageType.rubble :
|
||||
path.contains("sprites/ui") || path.contains("sprites-override/ui") ? PageType.ui :
|
||||
PageType.main;
|
||||
|
||||
Reference in New Issue
Block a user