LobbyUI 슬라이드 구조 적용

This commit is contained in:
aube.lee
2025-02-05 00:47:20 +09:00
parent 3455b9dd1b
commit b43bd19021
444 changed files with 192503 additions and 31 deletions

View File

@@ -0,0 +1,32 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TestingOptionalCancel : MonoBehaviour {
public GameObject cube1;
// Use this for initialization
void Start () {
LeanTween.init(1);
// Fire up a bunch with onUpdates
LeanTween.moveX(cube1, 10f, 1f).setOnUpdate((float val) =>
{
Debug.Log("on update.... val:"+val+" cube1.x:"+cube1.transform.position.x);
});
}
private bool alternate = true;
private void Update()
{
if(Input.GetMouseButtonDown(0)){
LeanTween.moveX(cube1, alternate ? -10f : 10f, 1f).setOnUpdate((float val) =>
{
Debug.Log("2 on update.... val:" + val + " cube1.x:" + cube1.transform.position.x);
});
alternate = !alternate;
}
}
}