making mockups of the intended UI

This commit is contained in:
alexiscatnip
2021-05-11 01:43:39 +08:00
parent 3fe9c223cc
commit 1ea25d3941
794 changed files with 126084 additions and 180 deletions
@@ -0,0 +1,18 @@
using UnityEngine;
using Lean.Transition;
public class RepeatFromCode : MonoBehaviour
{
void Start()
{
InvokeRepeating("UpAndDown", 0.0f, 2.0f); // Call every 2 seconds
}
void UpAndDown()
{
transform.
localPositionTransition(Vector3.up, 1). // Move up over 1 second
JoinTransition(). // Connect together
localPositionTransition(Vector3.down, 1); // Move down over 1 second
}
}