Cleaned up

This commit is contained in:
2026-01-14 11:00:08 +00:00
parent 2a3f8d5510
commit 9236ef6d95
11 changed files with 239 additions and 20 deletions

View File

@@ -1,12 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TitleJuice : MonoBehaviour
namespace InterfaceOff.MainMenu
{
void Start()
public class TitleJuice : MonoBehaviour
{
// 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));
private void Start() => iTween.ScaleTo
(
gameObject,
iTween.Hash("x", 1.2, "y", 1.2, "time", 1.5, "looptype", "pingpong", "easetype", iTween.EaseType.easeInOutQuad)
);
}
}