From 9002162b86341649eb7b6be118591a32b39d7876 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 29 Jun 2005 02:20:34 +0000 Subject: [PATCH] These should be instance local. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3636 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/jme/input/GodViewHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/jme/input/GodViewHandler.java b/src/java/com/threerings/jme/input/GodViewHandler.java index 35e541dc7..653e94c70 100644 --- a/src/java/com/threerings/jme/input/GodViewHandler.java +++ b/src/java/com/threerings/jme/input/GodViewHandler.java @@ -355,11 +355,11 @@ public class GodViewHandler extends InputHandler protected float _minZ = Float.MIN_VALUE, _maxZ = Float.MAX_VALUE; protected float _minRoll = Float.MIN_VALUE, _maxRoll = Float.MAX_VALUE; + protected Vector3f _rxdir = new Vector3f(1, 0, 0); + protected Vector3f _rydir = new Vector3f(0, 1, 0); + protected static final Vector3f _xdir = new Vector3f(1, 0, 0); protected static final Vector3f _ydir = new Vector3f(0, 1, 0); - protected static final Vector3f _rxdir = new Vector3f(1, 0, 0); - protected static final Vector3f _rydir = new Vector3f(0, 1, 0); - protected static final Vector3f _groundNormal = new Vector3f(0, 0, 1); }