From 13e9febe94aaeebad9c97f6d3e2aa4d73b2495c8 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 17 Jun 2019 18:49:45 -0400 Subject: [PATCH] Fix refresh info. --- Mocap.java | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/Mocap.java b/Mocap.java index 246c834..a98d80c 100644 --- a/Mocap.java +++ b/Mocap.java @@ -644,6 +644,24 @@ // transient // aout 2013 Object3D skeleton; + void ExtractBigData(Object3D o) + { + super.ExtractBigData(o); + + o.bvh = this.bvh; + o.skeleton = this.skeleton; + this.bvh = null; + this.skeleton = null; + } + + void RestoreBigData(Object3D o) + { + super.RestoreBigData(o); + + this.bvh = o.bvh; + this.skeleton = o.skeleton; + } + boolean smoothed; //boolean touched; -- Gitblit v1.6.2