Examples of PlaceConfig


Examples of com.threerings.crowd.data.PlaceConfig

    protected void effectSceneMove (SceneManager scmgr)
        throws InvocationException
    {
        // move to the place object associated with this scene
        int ploid = scmgr.getPlaceObject().getOid();
        PlaceConfig config = _locman.moveTo(_body, ploid);

        // now that we've moved, we can update the user object with the new zone id
        ((ZonedBodyObject)_body).setZoneId(_summary.zoneId);

        // check to see if they need a newer version of the scene data
View Full Code Here

Examples of com.threerings.crowd.data.PlaceConfig

    protected void effectSceneMove (SceneManager scmgr)
        throws InvocationException
    {
        // move to location associated with this scene
        int ploid = scmgr.getPlaceObject().getOid();
        PlaceConfig config = _locman.moveTo(_body, ploid);

        // check to see if they need a newer version of the scene data
        SceneService.SceneMoveListener listener = (SceneService.SceneMoveListener)_listener;
        SceneModel model = scmgr.getScene().getSceneModel();
        if (_version != model.version) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.