Add metadata files for LeanTween assets and update existing prefab references

This commit is contained in:
2025-12-13 02:33:23 +01:00
parent 2381153dbe
commit 471cf45df3
463 changed files with 237904 additions and 73 deletions

View File

@@ -0,0 +1,21 @@
using UnityEngine;
using System.Collections;
using DentedPixel;
public class TestingColorTweening : MonoBehaviour {
// Use this for initialization
void Start () {
LeanTween.value(gameObject, Color.red, Color.green, 1f)
.setOnUpdate(OnTweenUpdate)
.setOnUpdateParam(new object[] { "" + 2 });
}
private void OnTweenUpdate( Color update, object obj){
object[] objArr = obj as object[];
Debug.Log("update:"+update+" obj:"+objArr[0]);
}
}