From 79f84afd844535f667728f1088a09ec6695661a5 Mon Sep 17 00:00:00 2001 From: Gary Weiss Date: Thu, 25 May 2017 13:41:27 +0300 Subject: [PATCH] physical object syncto super --- src/serialize/PhysicalObject.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/serialize/PhysicalObject.js b/src/serialize/PhysicalObject.js index ccad107..0cc6af2 100644 --- a/src/serialize/PhysicalObject.js +++ b/src/serialize/PhysicalObject.js @@ -95,6 +95,8 @@ class PhysicalObject extends GameObject { syncTo(other, options) { + super.syncTo(other); + this.position.copy(other.position); this.quaternion.copy(other.quaternion);