Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandrem committed Oct 13, 2017
1 parent 82d3613 commit b6deddd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Binary file modified Assets/Scenes/MainMenu.unity
Binary file not shown.
2 changes: 2 additions & 0 deletions Assets/Scripts/MainMenu/View/MainMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ private void SetPositions()
{
GameObject.Find("UI/Panels/MainMenuPanel").transform.position = new Vector3(Screen.width / 20, Screen.height - Screen.height / 20, 0.0f);
GameObject.Find("UI/BackgroundImage").GetComponent<RectTransform>().sizeDelta = new Vector2(Screen.height * 16f / 9f, Screen.height);

GameObject.Find("UI/Panels/Version").transform.position = new Vector3(Screen.width / 20, GameObject.Find("UI/Panels/Version").transform.position.y, 0.0f);
}

private void SetCurrentPanel()
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Model/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class Global : MonoBehaviour {

public static string test = "I am accessible from every scene";

public static string CurrentVersion = "0.2.0 RC";
public static string CurrentVersion = "0.2.0";

private static List<ShipConfiguration> shipConfigurations = new List<ShipConfiguration>();

Expand Down

0 comments on commit b6deddd

Please sign in to comment.