Package com.threerings.miso.data.SparseMisoSceneModel

Examples of com.threerings.miso.data.SparseMisoSceneModel.ObjectVisitor


    {
        // add all possible colorization names to the list
        final TileManager tilemgr = _ctx.getTileManager();
        final TreeSet<String> set = Sets.newTreeSet();
        StageMisoSceneModel msmodel = StageMisoSceneModel.getSceneModel(_scene.getSceneModel());
        msmodel.visitObjects(new ObjectVisitor() {
            public void visit (ObjectInfo info) {
                int tsid = TileUtil.getTileSetId(info.tileId);
                TileSet tset;
                try {
                    tset = tilemgr.getTileSet(tsid);
View Full Code Here

TOP

Related Classes of com.threerings.miso.data.SparseMisoSceneModel.ObjectVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.