Server.Items.BaseLight.Burn C# (CSharp) Méthode

Burn() public méthode

public Burn ( ) : void
Résultat void
		public virtual void Burn()
		{
			m_BurntOut = true;
			Douse();
		}

Usage Example

Exemple #1
0
 protected override void OnTick()
 {
     if (m_Light != null && !m_Light.Deleted)
     {
         m_Light.Burn();
     }
 }
All Usage Examples Of Server.Items.BaseLight::Burn