Merge branch 'main' into Pasha

This commit is contained in:
Pasha Bibko
2026-01-22 10:27:40 +00:00
13 changed files with 506 additions and 118 deletions

View File

@@ -7,7 +7,7 @@ namespace InterfaceOff.MainMenu
{
public void OnStartClick()
{
SceneManager.LoadScene("GameScene");
SceneManager.LoadScene("WorldScene");
}
public void OnExitClick()

View File

@@ -8,7 +8,7 @@ namespace InterfaceOff.MainMenu
private void Start() => iTween.ScaleTo
(
gameObject,
iTween.Hash("x", 1.2, "y", 1.2, "time", 1.5, "looptype", "pingpong", "easetype", iTween.EaseType.easeInOutQuad)
iTween.Hash("x", 1.1, "y", 1.1, "time", 1.5, "looptype", "pingpong", "easetype", iTween.EaseType.easeInOutQuad)
);
}
}