Work on rendering a character in the scene and moving them about with

mouse-click events.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@134 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-07-31 01:38:28 +00:00
parent 11800e8a43
commit 82831f3baf
7 changed files with 208 additions and 25 deletions
@@ -1,5 +1,5 @@
//
// $Id: AnimationManager.java,v 1.1 2001/07/28 01:50:07 shaper Exp $
// $Id: AnimationManager.java,v 1.2 2001/07/31 01:38:28 shaper Exp $
package com.threerings.miso.sprite;
@@ -28,7 +28,11 @@ public class AnimationManager
Interval refresher = new Interval() {
public void intervalExpired (int id, Object arg)
{
// refresh the display
_target.repaint();
// call tick on all sprites
_spritemgr.tick();
}
};