|
@@ -29,7 +29,13 @@
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
*/
|
|
|
-@TemplateRegistration(folder = "Material", content = "MatDef.j3md", displayName="Material Definition Template")
|
|
|
+@TemplateRegistrations({
|
|
|
+ @TemplateRegistration(folder = "Material", content = "MatDef.j3md", displayName="Material Definition Template (Shader Nodes)"),
|
|
|
+ @TemplateRegistration(folder = "Material", content = "CodeBasedMatDef.j3md", displayName="Material Definition Template (Code Based)", position = 100),
|
|
|
+ @TemplateRegistration(folder = "GLSL", content = "BasicShader.vert", displayName="Vertex Shader Template", position = 200),
|
|
|
+ @TemplateRegistration(folder = "GLSL", content = "BasicShader.frag", displayName="Fragment Shader Template", position = 300)
|
|
|
+})
|
|
|
package com.jme3.gde.materialdefinition;
|
|
|
|
|
|
import org.netbeans.api.templates.TemplateRegistration;
|
|
|
+import org.netbeans.api.templates.TemplateRegistrations;
|