OpenMetaverse.ObjectManager.OnParticleUpdate C# (CSharp) Method

OnParticleUpdate() protected method

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