Skip to content

Commit

Permalink
jse3d v1.3 beta 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Emery Ferrari committed May 7, 2020
1 parent b264133 commit 0333ff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/emeryferrari/jse3d/JSE3DConst.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
public class JSE3DConst {
private JSE3DConst() {}
public static final String NAME = "jse3d";
public static final String VERSION = "v1.3 beta";
public static final String VERSION = "v1.3 beta 2";
public static final String FULL_NAME = JSE3DConst.NAME + " " + JSE3DConst.VERSION;
public static final int PHYSICS_TIMESTEP = 60;
}
1 change: 1 addition & 0 deletions src/com/emeryferrari/jse3d/Object3DSerializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public static Object3D[] load(File file) throws IOException, ClassNotFoundExcept
done = true;
}
}
ois.close();
Object3D[] ret = new Object3D[temp.size()];
for (int i = 0; i < temp.size(); i++) {
ret[i] = temp.get(i);
Expand Down

0 comments on commit 0333ff4

Please sign in to comment.