Unity ボタンを回転させたい。ここに私のコードがありますが、動作しません。
if (GUI.Button(
new Rect(95 * Screen.width / 100 - Screen.height / 8,
4 * Screen.height / 5,
Screen.height / 4,
Screen.height / 4),
MoreUp) || this.ForceMoreClick)
{
this.transform.rotation.x = 10f;
this.PlayMenuButtonClick();
this.MoreAnimatedDir = this.MoreAnimatedDir == AnimatedDirection.UP
? AnimatedDirection.UPREVERT
: AnimatedDirection.UP;
this.moreAnimation.ChangeAnimatedDirection(this.MoreAnimatedDir);
this.ForceMoreClick = false;
}
これには TweenLean を使用する必要がありますか?