OpenMetaverse.ObjectManager.OnObjectProperties C# (CSharp) 메소드

OnObjectProperties() 보호된 메소드

Raises the ObjectProperties Event
protected OnObjectProperties ( ObjectPropertiesEventArgs e ) : void
e ObjectPropertiesEventArgs A ObjectPropertiesEventArgs object containing /// the data sent from the simulator
리턴 void
        protected virtual void OnObjectProperties(ObjectPropertiesEventArgs e)
        {
            EventHandler<ObjectPropertiesEventArgs> handler = m_ObjectProperties;
            if (handler != null)
                handler(this, e);
        }