From d32f24f147068e6cbecb31c7f98047f68bc8b58a Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 21 Jul 2019 19:03:28 -0400 Subject: [PATCH] Embed texture. --- GroupLeaf.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/GroupLeaf.java b/GroupLeaf.java index 805acf2..98da0c9 100644 --- a/GroupLeaf.java +++ b/GroupLeaf.java @@ -14,7 +14,12 @@ GroupLeaf() { - super("GroupLeaf"); + this("Loop"); + } + + GroupLeaf(String name) + { + super(name); addChild(new cGroup("Leaf")); } -- Gitblit v1.6.2