mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
do it in the editor too
This commit is contained in:
parent
8b3bca35c7
commit
291fabe197
3 changed files with 6 additions and 5 deletions
|
@ -1110,7 +1110,7 @@ namespace HeavenStudio
|
|||
SetCurrentGame(game, useMinigameColor);
|
||||
}
|
||||
|
||||
private void DestroyGame()
|
||||
public void DestroyGame()
|
||||
{
|
||||
SetGame("noGame");
|
||||
}
|
||||
|
|
|
@ -507,12 +507,12 @@ namespace HeavenStudio.Editor
|
|||
|
||||
public static bool MouseInRectTransform(RectTransform rectTransform)
|
||||
{
|
||||
return (rectTransform.gameObject.activeSelf && RectTransformUtility.RectangleContainsScreenPoint(rectTransform, Input.mousePosition, Editor.instance.EditorCamera));
|
||||
return rectTransform.gameObject.activeSelf && RectTransformUtility.RectangleContainsScreenPoint(rectTransform, Input.mousePosition, Editor.instance.EditorCamera);
|
||||
}
|
||||
|
||||
public void ReturnToTitle()
|
||||
{
|
||||
GlobalGameManager.LoadScene("Title");
|
||||
GlobalGameManager.LoadScene("Title", callback: GameManager.instance.DestroyGame);
|
||||
}
|
||||
|
||||
public void SetAuthoritiveMenu(bool state)
|
||||
|
|
|
@ -39,5 +39,6 @@ MonoBehaviour:
|
|||
- Assets/Scripts/Games/TossBoys/TossBoys.cs
|
||||
- Assets/Scripts/Games/DoubleDate/DoubleDate.cs
|
||||
- Assets/Scripts/Games/AirRally/AirRally.cs
|
||||
- Assets/Scripts/LevelEditor/Editor.cs
|
||||
PathsToSkipImportEvent: []
|
||||
PathsToIgnoreOverwriteSettingOnAttribute: []
|
||||
|
|
Loading…
Reference in a new issue