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,33 @@
using UnityEngine;
using System.Collections;
using DentedPixel;
public class TestingIssue : MonoBehaviour {
LTDescr lt,ff;
int id,fid;
void Start () {
LeanTween.init();
lt = LeanTween.move(gameObject,100*Vector3.one,2);
id = lt.id;
LeanTween.pause(id);
ff = LeanTween.move(gameObject,Vector3.zero,2);
fid = ff.id;
LeanTween.pause(fid);
}
void Update () {
if(Input.GetKeyDown(KeyCode.A))
{
// Debug.Log("id:"+id);
LeanTween.resume(id);
}
if(Input.GetKeyDown(KeyCode.D))
{
LeanTween.resume(fid);
}
}
}