Skip to content

Commit

Permalink
Fix movement keys not responding after closing stomt, and update remo…
Browse files Browse the repository at this point in the history
…tefortressreader plugins.
  • Loading branch information
RosaryMala committed Feb 27, 2017
1 parent c2ead03 commit 20c4e99
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions Assets/stomt Collect Player-Feedback/Scripts/StomtPopup.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.Collections;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;

namespace Stomt
Expand Down Expand Up @@ -158,8 +159,9 @@ public void Hide()
{
// Hide UI
_ui.SetActive(false);
}
void Reset()
EventSystem.current.SetSelectedGameObject(null);
}
void Reset()
{
_targetText.text = _api.TargetName;

Expand Down
Git LFS file not shown
Git LFS file not shown

0 comments on commit 20c4e99

Please sign in to comment.