Skip to content

Commit

Permalink
demo: tweak globe scene
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Oct 22, 2016
1 parent 6fdb434 commit bfd722e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Binary file modified unity/demo/Assets/Resources/Textures/launcher_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified unity/demo/Assets/Scenes/GlobeLevelScene.unity
Binary file not shown.
5 changes: 3 additions & 2 deletions unity/demo/Assets/Scripts/Extensions/AddressBehaviour.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ void Start()
_trace = ApplicationManager.Instance.GetService<ITrace>() as DebugConsoleTrace;
if (_trace != null)
_trace.SetUIText(StatusText);

StartCoroutine(RequestAddress());

if (AddressText != null)
StartCoroutine(RequestAddress());
}

IEnumerator RequestAddress()
Expand Down
3 changes: 2 additions & 1 deletion unity/demo/Assets/Scripts/Menu/ScenePanelManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public class ScenePanelManager : MonoBehaviour
void Start()
{
_messageBus = ApplicationManager.Instance.GetService<IMessageBus>();
ZoomInButton.gameObject.SetActive(false);
if (ZoomInButton != null)
ZoomInButton.gameObject.SetActive(false);
}

public void OnBackClick()
Expand Down

0 comments on commit bfd722e

Please sign in to comment.