Futile.GetStageAt C# (CSharp) Méthode

GetStageAt() public static méthode

public static GetStageAt ( int index ) : FStage,
index int
Résultat FStage,
    public static FStage GetStageAt(int index)
    {
        return _stages[index];
    }

Usage Example

Exemple #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!
     }
 }