- fix palette item mixup

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9133 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2012-02-03 23:31:11 +00:00
parent be7ebbc5f3
commit 06de64654e
2 changed files with 6 additions and 6 deletions

View File

@ -40,14 +40,14 @@ import org.openide.text.ActiveEditorDrop;
*
* @author normenhansen, zathras
*/
public class JmePaletteWireframe implements ActiveEditorDrop {
public class JmePaletteSetJ3M implements ActiveEditorDrop {
public JmePaletteWireframe() {
public JmePaletteSetJ3M() {
}
private String createBody() {
String body = "mat.getAdditionalRenderState().setWireframe(true);\n";
String body = "Material mat = assetManager.loadMaterial(\"Common/Materials/RedColor.j3m\");\n";
return body;
}

View File

@ -40,14 +40,14 @@ import org.openide.text.ActiveEditorDrop;
*
* @author normenhansen, zathras
*/
public class JmePaletteSetJ3M implements ActiveEditorDrop {
public class JmePaletteWireframe implements ActiveEditorDrop {
public JmePaletteSetJ3M() {
public JmePaletteWireframe() {
}
private String createBody() {
String body = "Material mat = assetManager.loadMaterial(\"Common/Materials/RedColor.j3m\");\n";
String body = "mat.getAdditionalRenderState().setWireframe(true);\n";
return body;
}