Weiter am Editor gearbeitet, unter anderem LOD System, Items, Trees, Modelle

This commit is contained in:
2026-06-08 22:25:47 +02:00
parent 1297869dfa
commit 5e85051716
1113 changed files with 3665 additions and 529 deletions

View File

@@ -44,6 +44,12 @@ public class Tree extends Node {
private final List<Integer> leafIdx = new ArrayList<>();
private final List<Float> leafWind = new ArrayList<>();
/** No-arg constructor required by JME3 BinaryImporter. */
public Tree() {
super("EzTree");
this.opts = new TreeOptions();
}
public Tree(TreeOptions opts) {
super("EzTree");
this.opts = opts;