Google.SettingsDialog.Initialize C# (CSharp) Method

Initialize() public method

Setup the window's initial position and size.
public Initialize ( ) : void
return void
    public void Initialize()
    {
        minSize = new Vector2(300, 200);
        position = new Rect(UnityEngine.Screen.width / 3,
                            UnityEngine.Screen.height / 3,
                            minSize.x, minSize.y);
    }