LobbyUI 슬라이드 구조 적용
This commit is contained in:
17
Gameton-06/Assets/LeanTween/Testing/Testing248.cs
Normal file
17
Gameton-06/Assets/LeanTween/Testing/Testing248.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class Testing248 : MonoBehaviour {
|
||||
|
||||
public GameObject dude1;
|
||||
|
||||
// Use this for initialization
|
||||
void Start () {
|
||||
//dude1.LeanMoveX(10f, 1f);
|
||||
int id = LeanTween.moveX(dude1, 1f, 3f).id;
|
||||
Debug.Log("id:" + id);
|
||||
if (LeanTween.isTweening(id))
|
||||
Debug.Log("I am tweening!");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user