Files
ColorQuest/Assets/LeanTween/Testing/Testing248.cs
Ardella Malinda Sarastri 72b8b42a0b Initial commit
2025-07-10 17:06:42 +07:00

18 lines
408 B
C#

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!");
}
}