[LayaAir 2.0]3D模型tween旋转
Laya.Tween.to(sss.transform,{rotationEuler:new Laya.Vector3(0,0,0)},2000);
sss是MeshSprite3D的节点,从unity导入laya的模型
运行上述代码后,模型不旋转。
使用sss.transform.rotationEuler=new Laya.Vector3(0,0,0),赋值有效
想问下,是我这个旋转的tween函数写的不对么?求大佬支援
sss是MeshSprite3D的节点,从unity导入laya的模型
运行上述代码后,模型不旋转。
使用sss.transform.rotationEuler=new Laya.Vector3(0,0,0),赋值有效
想问下,是我这个旋转的tween函数写的不对么?求大佬支援
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
王志文
赞同来自: kshell 、137*****196
Laya.Tween.to(sss.transform,{localRotationEulerY:0},2000);