Skip to content

Commit e89ca2c

Browse files
committed
some fixes
1 parent f13a222 commit e89ca2c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

build-native.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project name="jME SpaceShift Editor" default="do-deploy" basedir="build"
33
xmlns:fx="javafx:com.sun.javafx.tools.ant">
44

5-
<property name="editor.version" value="0.9.1.1" />
5+
<property name="editor.version" value="0.9.1.2" />
66

77
<target name="init-fx-tasks">
88
<path id="fxant">
@@ -200,6 +200,7 @@
200200
<fx:fileset dir="dist" includes="libs/extensions/*"/>
201201
<fx:fileset dir="dist" includes="libs/extensions/xbuf/*"/>
202202
<fx:fileset dir="dist" includes="libs/extensions/toneg0d/*"/>
203+
<fx:fileset dir="dist" includes="libs/extensions/simsilica/*"/>
203204
<fx:fileset dir="package"/>
204205
</fx:resources>
205206

src/com/ss/editor/config/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public abstract class Config {
2525
public static final String CONFIG_RESOURCE_PATH = "/com/ss/editor/config/config.xml";
2626

2727
public static final String TITLE = "jME3 SpaceShift Editor";
28-
public static final String VERSION = "v.0.9.1.1";
28+
public static final String VERSION = "v.0.9.1.2";
2929

3030
public static final String SS_FOLDER_IN_USER_HOME = ".jme3-spaceshift-editor";
3131

src/com/ss/editor/ui/component/creator/impl/EmptySceneCreator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ protected void processCreate() {
5454
newNode.addLayer(new SceneLayer("TransparentFX", true));
5555
newNode.addLayer(new SceneLayer("Ignore Raycast", true));
5656
newNode.addLayer(new SceneLayer("Water", true));
57+
newNode.getLayers().forEach(SceneLayer::show);
5758

5859
try (final OutputStream out = Files.newOutputStream(fileToCreate)) {
5960
exporter.save(newNode, out);

0 commit comments

Comments
 (0)