Immediately update our scene location when we are requested to track a

pathable.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2404 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-04-12 01:26:29 +00:00
parent 1bf86bf495
commit a8c6d62913
@@ -1,5 +1,5 @@
// //
// $Id: VirtualMediaPanel.java,v 1.13 2002/11/20 22:15:34 mdb Exp $ // $Id: VirtualMediaPanel.java,v 1.14 2003/04/12 01:26:29 mdb Exp $
package com.threerings.media; package com.threerings.media;
@@ -66,8 +66,8 @@ public class VirtualMediaPanel extends MediaPanel
/** /**
* Instructs the view to follow the supplied pathable; ensuring that * Instructs the view to follow the supplied pathable; ensuring that
* the pathable always remains in the center of the view. The virtual * the pathable always remains in the center of the view. The virtual
* coordinates will be adjusted after every tick to center the view on * coordinates will be adjusted immediately and then on every tick to
* the sprite. * center the view on the sprite.
* *
* @param pable the pathable to follow. * @param pable the pathable to follow.
*/ */
@@ -75,6 +75,7 @@ public class VirtualMediaPanel extends MediaPanel
{ {
_fmode = CENTER_ON_PATHABLE; _fmode = CENTER_ON_PATHABLE;
_fpath = pable; _fpath = pable;
trackPathable(); // immediately update our location
} }
/** /**
@@ -85,6 +86,7 @@ public class VirtualMediaPanel extends MediaPanel
{ {
_fmode = ENCLOSE_PATHABLE; _fmode = ENCLOSE_PATHABLE;
_fpath = pable; _fpath = pable;
trackPathable(); // immediately update our location
} }
/** /**