From d7a17c35c443e2cb6c09eaa3cfeaf590a571faa1 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Wed, 17 Jul 2019 20:15:40 -0400 Subject: [PATCH] Version slider --- Object3D.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/Object3D.java b/Object3D.java index 750acd4..f8d6c9c 100644 --- a/Object3D.java +++ b/Object3D.java @@ -29,6 +29,9 @@ Object3D saveskeleton; // + byte[] versions[] = new byte[100][]; + int versionindex = -1; + ScriptNode scriptnode; void InitOthers() @@ -215,6 +218,9 @@ // o.transientrep = this.bRep.support; // o.bRep.support = null; // } + o.selection = this.selection; + o.versions = this.versions; + o.versionindex = this.versionindex; if (this.support != null) { @@ -268,6 +274,11 @@ { this.support.bRep = o.transientrep; } + + this.selection = o.selection; + + this.versions = o.versions; + this.versionindex = o.versionindex; // July 2019 if (this.bRep != null) // this.bRep.support = o.transientrep; // this.support = o.support; -- Gitblit v1.6.2