Day 3 - Menu Stuff

Small changes & adjustments to the MenuScene.
This commit is contained in:
StudentJW
2026-01-20 15:25:24 +00:00
parent e58db7d6af
commit ff4bc745e1
13 changed files with 506 additions and 118 deletions

View File

@@ -7,15 +7,14 @@ public class MouseHover : MonoBehaviour
void OnMouseOver()
{
Debug.Log("tHIS");
iTween.ScaleTo(gameObject, iTween.Hash("x", 1.25, "y", 1.25, "time", 1));
iTween.ScaleTo(gameObject, iTween.Hash("x", 1.15, "y", 1.1, "time", 1.5));
}
void OnMouseExit()
{
iTween.ScaleTo(gameObject, iTween.Hash("x", 1, "y", 1, "time", 1));
iTween.ScaleTo(gameObject, iTween.Hash("x", 1, "y", 1, "time", 1.5));
}
}