Added default tileset and tile id to the editor properties. Added

more sample tiles with ingenious "daniel"-based naming scheme for
testing purposes.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@139 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-08-02 01:19:47 +00:00
parent 1032b8f325
commit 343eb1b38f
5 changed files with 35 additions and 20 deletions
@@ -1,5 +1,5 @@
//
// $Id: XMLSceneParser.java,v 1.4 2001/07/27 17:52:07 shaper Exp $
// $Id: XMLSceneParser.java,v 1.5 2001/08/02 01:19:47 shaper Exp $
package com.threerings.miso.scene.xml;
@@ -83,8 +83,9 @@ public class XMLSceneParser extends DefaultHandler
} else if (qName.equals("scene")) {
// construct the scene object on tag close
_scene = new Scene(_tilemgr, Scene.SID_INVALID, _scName,
_scHotspots, _scExits, _scTiles);
_scene = new Scene(
_tilemgr, _scName, _scHotspots, _scExits, _scTiles);
Log.info("Constructed parsed scene [scene=" + _scene + "].");
}