OpenMetaverse.ObjectManager.OnPhysicsProperties C# (CSharp) Method

OnPhysicsProperties() protected method

Raises the PhysicsProperties Event
protected OnPhysicsProperties ( PhysicsPropertiesEventArgs e ) : void
e PhysicsPropertiesEventArgs A PhysicsPropertiesEventArgs object containing /// the data sent from the simulator
return void
        protected virtual void OnPhysicsProperties(PhysicsPropertiesEventArgs e)
        {
            EventHandler<PhysicsPropertiesEventArgs> handler = m_PhysicsProperties;
            if (handler != null)
                handler(this, e);
        }