From d248db5fc21c4b0ab24968974e5e590f413ef8fc Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 17 Sep 2019 18:56:45 -0400 Subject: [PATCH] Smooth navigation. --- GroupLeaf.java | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/GroupLeaf.java b/GroupLeaf.java index b42c72d..9c7e5f5 100644 --- a/GroupLeaf.java +++ b/GroupLeaf.java @@ -9,13 +9,19 @@ */ public class GroupLeaf extends Composite { - static final long serialVersionUID = -1647706059469889079L; + static final long serialVersionUID = // for wader: -6036608125951558970L; + -1647706059469889079L; GroupLeaf() { - super("GroupLeaf"); + this("Loop"); + } + + GroupLeaf(String name) + { + super(name); - addChild(new cGroup("Leaf")); + addChild(new cGroup(name + "Leaf")); } Object3D deepCopy() -- Gitblit v1.6.2