Fire.Draw C# (CSharp) Méthode

Draw() public méthode

public Draw ( ) : void
Résultat void
    public void Draw()
    {
        if (hand.show.Equals(1f) && hand.indexDist > hand.hparams.indexDistMin)
        {
            fire.SetActive(true);
            fire.transform.position = hand.spheres[8].transform.position;
        }
        else
        {
            fire.SetActive(false);
        }
    }
}

Usage Example

Exemple #1
0
 public void Draw()
 {
     fire.Seed();
     fire.Burn();
     fire.Draw(imageSurface);
     imageSurface.Flush();
 }
All Usage Examples Of Fire::Draw