Package org.jdesktop.wonderland.common.cell.messages

Examples of org.jdesktop.wonderland.common.cell.messages.MovableMessageResponse


            public void responseReceived(ResponseMessage response) {
                CellTransform requestedTransform = null;
                CellTransform actualTransform = null;

                if (response instanceof MovableMessageResponse) {
                    MovableMessageResponse msg = (MovableMessageResponse) response;
                    actualTransform = new CellTransform(msg.getRotation(),
                                                        msg.getTranslation(),
                                                        msg.getScale());
                }
              
                int reason = 1;
                listener.moveModified(requestedTransform, reason, actualTransform);
                // TODO Trigger a cell move with the SERVER_ADJUST source
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.cell.messages.MovableMessageResponse

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.