Files
Inter-Face-Off/Assets/Scripts/TitleJuice.cs
StudentJW ff4bc745e1 Day 3 - Menu Stuff
Small changes & adjustments to the MenuScene.
2026-01-20 15:25:24 +00:00

15 lines
382 B
C#

using UnityEngine;
namespace InterfaceOff.MainMenu
{
public class TitleJuice : MonoBehaviour
{
// Scale the gameobject to 2.0 in 1.5 seconds
private void Start() => iTween.ScaleTo
(
gameObject,
iTween.Hash("x", 1.1, "y", 1.1, "time", 1.5, "looptype", "pingpong", "easetype", iTween.EaseType.easeInOutQuad)
);
}
}