Skip to content

Commit 8751505

Browse files
authored
Merge pull request #2485 from capdevon/capdevon-Materials
Materials: new material definitions for common shaders
2 parents 98f5114 + ca50495 commit 8751505

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

jme3-core/src/main/java/com/jme3/material/Materials.java

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009-2021 jMonkeyEngine
2+
* Copyright (c) 2009-2025 jMonkeyEngine
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -38,13 +38,17 @@
3838
*/
3939
public class Materials {
4040

41-
public static final String UNSHADED = "Common/MatDefs/Misc/Unshaded.j3md";
42-
public static final String LIGHTING = "Common/MatDefs/Light/Lighting.j3md";
43-
public static final String PBR = "Common/MatDefs/Light/PBRLighting.j3md";
41+
public static final String SHOW_NORMALS = "Common/MatDefs/Misc/ShowNormals.j3md";
42+
public static final String UNSHADED = "Common/MatDefs/Misc/Unshaded.j3md";
43+
public static final String LIGHTING = "Common/MatDefs/Light/Lighting.j3md";
44+
public static final String PBR = "Common/MatDefs/Light/PBRLighting.j3md";
45+
public static final String PARTICLE = "Common/MatDefs/Misc/Particle.j3md";
46+
public static final String BILLBOARD = "Common/MatDefs/Misc/Billboard.j3md";
47+
public static final String GUI = "Common/MatDefs/Gui/Gui.j3md";
4448

4549
/**
4650
* A private constructor to inhibit instantiation of this class.
4751
*/
4852
private Materials() {
4953
}
50-
}
54+
}

0 commit comments

Comments
 (0)