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

Examples of com.ngt.jopenmetaverse.shared.sim.events.am.RegionCrossedEventArgs


    {
      JLogger.info("Finished crossing over in to region " + newSim.toString());
      oldSim.AgentMovementComplete = false; // We're no longer there
      if (onRegionCrossed != null)
      {
        onRegionCrossed.raiseEvent(new RegionCrossedEventArgs(oldSim, newSim));
      }
    }
    else
    {
      // The old simulator will (poorly) handle our movement still, so the connection isn't
View Full Code Here


    {
      JLogger.info("Finished crossing over in to region " + newSim.toString());

      if (onRegionCrossed != null)
      {
        onRegionCrossed.raiseEvent(new RegionCrossedEventArgs(oldSim, newSim));
      }
    }
    else
    {
      // The old simulator will (poorly) handle our movement still, so the connection isn't
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.sim.events.am.RegionCrossedEventArgs

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.