Skip to content

Commit

Permalink
Various UI and other fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DMagic1 committed Feb 10, 2017
1 parent a5d77ee commit 14c66fc
Show file tree
Hide file tree
Showing 20 changed files with 758 additions and 171 deletions.
12 changes: 9 additions & 3 deletions SCANsat.Unity/Interfaces/ISCAN_BigMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public interface ISCAN_BigMap

string CurrentCelestialBody { get; set; }

string RandomWaypoint { get; }

bool IsVisible { get; set; }

bool ColorToggle { get; set; }
Expand Down Expand Up @@ -46,12 +48,16 @@ public interface ISCAN_BigMap

bool TooltipsOn { get; }

bool LockInput { get; set; }

int OrbitSteps { get; }

int CurrentScene { get; }

float Scale { get; }

Sprite WaypointSprite { get; }

Canvas MainCanvas { get; }

Canvas TooltipCanvas { get; }
Expand All @@ -60,8 +66,6 @@ public interface ISCAN_BigMap

Vector2 Size { get; set; }

Vector2 MapScreenPosition { get; set; }

Texture2D LegendImage { get; }

IList<string> Projections { get; }
Expand Down Expand Up @@ -102,7 +106,9 @@ public interface ISCAN_BigMap

void Update();

void OnGUI();
void SetWaypoint(string id, Vector2 pos);

void ClickMap(Vector2 pos);

SimpleLabelInfo OrbitInfo(int index);

Expand Down
2 changes: 2 additions & 0 deletions SCANsat.Unity/Interfaces/ISCAN_MainMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public interface ISCAN_MainMap

bool TooltipsOn { get; }

bool MapGenerating { get; }

float Scale { get; }

Canvas TooltipCanvas { get; }
Expand Down
4 changes: 4 additions & 0 deletions SCANsat.Unity/Interfaces/ISCAN_Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public interface ISCAN_Settings

bool WindowTooltips { get; set; }

bool MapGenSpeed { get; set; }

bool StockToolbar { get; set; }

bool ToolbarMenu { get; set; }
Expand All @@ -64,6 +66,8 @@ public interface ISCAN_Settings

bool ShowMapFill { get; }

bool LockInput { get; set; }

Canvas TooltipCanvas { get; }

Vector2 Position { set; }
Expand Down
Loading

0 comments on commit 14c66fc

Please sign in to comment.