Futile.GetStageCount C# (CSharp) Method

GetStageCount() public static method

public static GetStageCount ( ) : int
return int
    public static int GetStageCount()
    {
        return _stages.Count;
    }

Usage Example

Beispiel #1
0
 void HandleResize(bool wasResizedDueToOrientationChange)
 {
     for (int s = 0; s < Futile.GetStageCount(); s++)
     {
         Futile.GetStageAt(s).scale = Futile.screen.width / 1280.0f;             //keep it full screen always!
     }
 }