瀏覽代碼

- serialize light&camera name

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7182 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 14 年之前
父節點
當前提交
33596cb88f
共有 2 個文件被更改,包括 4 次插入0 次删除
  1. 2 0
      engine/src/core/com/jme3/light/Light.java
  2. 2 0
      engine/src/core/com/jme3/renderer/Camera.java

+ 2 - 0
engine/src/core/com/jme3/light/Light.java

@@ -132,12 +132,14 @@ public abstract class Light implements Savable, Cloneable {
         OutputCapsule oc = ex.getCapsule(this);
         oc.write(color, "color", null);
         oc.write(enabled, "enabled", true);
+        oc.write(name, "name", null);
     }
 
     public void read(JmeImporter im) throws IOException {
         InputCapsule ic = im.getCapsule(this);
         color = (ColorRGBA) ic.readSavable("color", null);
         enabled = ic.readBoolean("enabled", true);
+        name = ic.readString("name", null);
     }
 
     public abstract void computeLastDistance(Spatial owner);

+ 2 - 0
engine/src/core/com/jme3/renderer/Camera.java

@@ -1326,6 +1326,7 @@ public class Camera implements Savable, Cloneable {
         capsule.write(viewPortBottom, "viewPortBottom", 0);
         capsule.write(width, "width", 0);
         capsule.write(height, "height", 0);
+        capsule.write(name, "name", null);
     }
 
     public void read(JmeImporter e) throws IOException {
@@ -1348,5 +1349,6 @@ public class Camera implements Savable, Cloneable {
         viewPortBottom = capsule.readFloat("viewPortBottom", 0);
         width = capsule.readInt("width", 0);
         height = capsule.readInt("height", 0);
+        name = capsule.readString("name", null);
     }
 }