Futile.GetStageCount C# (CSharp) 메소드

GetStageCount() 공개 정적인 메소드

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

Usage Example

예제 #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!
     }
 }