Package com.ngt.jopenmetaverse.shared.sim.events.om

Examples of com.ngt.jopenmetaverse.shared.sim.events.om.ObjectPropertiesUpdatedEventArgs


        Primitive findPrim = simulator.ObjectsPrimitives.get(props.ObjectID);
       
        if (findPrim != null)
        {
          onObjectPropertiesUpdated.raiseEvent(new ObjectPropertiesUpdatedEventArgs(simulator, findPrim, props));

          synchronized (simulator.ObjectsPrimitives.getDictionary())
          {
            if (simulator.ObjectsPrimitives.getDictionary().containsKey(findPrim.LocalID))
              simulator.ObjectsPrimitives.getDictionary().get(findPrim.LocalID).Properties = props;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.sim.events.om.ObjectPropertiesUpdatedEventArgs

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.