Implemented a debugging view that shows when scene blocks are being

resolved; adjusted influential bounds based on new strategy for scrolling
around and resolving blocks.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2567 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-05-12 02:03:31 +00:00
parent 48a102de5a
commit 8ca388fb7e
3 changed files with 216 additions and 6 deletions
@@ -1,5 +1,5 @@
//
// $Id: SceneBlock.java,v 1.14 2003/04/28 20:41:13 mdb Exp $
// $Id: SceneBlock.java,v 1.15 2003/05/12 02:03:31 mdb Exp $
package com.threerings.miso.client;
@@ -62,8 +62,10 @@ public class SceneBlock
// if we got canned before we were resolved, go ahead and bail now
if (_panel.getBlock(_bounds.x, _bounds.y) != this) {
// Log.info("Not resolving abandoned block " + this + ".");
_panel.blockAbandoned(this);
return false;
}
_panel.blockResolving(this);
// start with the bounds of the footprint polygon
Rectangle sbounds = new Rectangle(_footprint.getBounds());