.. | .. |
---|
29 | 29 | Object3D saveskeleton; |
---|
30 | 30 | // |
---|
31 | 31 | |
---|
| 32 | + byte[] versions[] = new byte[100][]; |
---|
| 33 | + int versionindex = -1; |
---|
| 34 | + |
---|
32 | 35 | ScriptNode scriptnode; |
---|
33 | 36 | |
---|
34 | 37 | void InitOthers() |
---|
.. | .. |
---|
215 | 218 | // o.transientrep = this.bRep.support; |
---|
216 | 219 | // o.bRep.support = null; |
---|
217 | 220 | // } |
---|
| 221 | + o.selection = this.selection; |
---|
| 222 | + o.versions = this.versions; |
---|
| 223 | + o.versionindex = this.versionindex; |
---|
218 | 224 | |
---|
219 | 225 | if (this.support != null) |
---|
220 | 226 | { |
---|
.. | .. |
---|
268 | 274 | { |
---|
269 | 275 | this.support.bRep = o.transientrep; |
---|
270 | 276 | } |
---|
| 277 | + |
---|
| 278 | + this.selection = o.selection; |
---|
| 279 | + |
---|
| 280 | + this.versions = o.versions; |
---|
| 281 | + this.versionindex = o.versionindex; |
---|
271 | 282 | // July 2019 if (this.bRep != null) |
---|
272 | 283 | // this.bRep.support = o.transientrep; |
---|
273 | 284 | // this.support = o.support; |
---|