ngui中tweenposition中的的to能动态改变么

2024-12-20 09:35:37
推荐回答(1个)
回答1:

TweenRotation的参数类型是四元数Quaternion类型,如果想用Vector3类型(欧拉角),可以这样: Quaternion rotation = Quaternion.Euler(transform.eulerAngles); 把计算后的rotation 作为TweenRotation的参数即可。