[]sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale
试了一下好像不行,无论是Laya.Tween.to(lamp.transform, {localScale:Vector3.zero}, 500); 还是Laya.Tween.to(lamp.transform.localScale, {x:1, y:1, z:1}, 500);都没有反应,是不是我调用的方式不对呢 ?
没有找到相关结果
已邀请:
要回复问题请先登录
6 个回复
zszen
赞同来自: ryusing 、linzhaojie 、墨丶 、EpicLee 、1605953523用户
x:1
,y:2
,update:new Laya.Handler(box,function(){
this.transform.position = this.potOld;
})
}, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){
console.log("complete");
}),ConstValue.animationDelay);
无法直接设置原因是浅拷贝变量无法同步到原对象中去
183*****755
赞同来自:
game4d
赞同来自:
ryusing
赞同来自:
大饼干
赞同来自:
这是我写的一个解决方案,同理可以修改成控制scale 和 rotation
第七天堂
赞同来自:
链式的调用方式
https://blog.csdn.net/qq_39162 ... .5501