This commit is contained in:
StudentJW
2026-01-13 15:42:18 +00:00
parent eae7b615d6
commit e6c9c143f1
107 changed files with 22548 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TitleJuice : MonoBehaviour
{
void Start()
{
// Scale the gameobject to 2.0 in 1.5 seconds
iTween.ScaleTo(gameObject, iTween.Hash("x", 1.2, "y", 1.2, "time", 1.5, "looptype", "pingpong", "easetype", iTween.EaseType.easeInOutQuad));
}
}