Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I want to know the method of changing the bike's max turn value.
#6
That solution only works if you also lean. If you want the bike rotation to just follow your head, then you can set it to the same rotation after VZPlayer.Update.

As an example you could subclass vzplayer and do like

override void Update () {
base.Update();
var angles = Controller.Head.eulerAngles
angles.x = angles.z = 0;
transform.eulerAngles = angles;
}
Reply


Messages In This Thread
RE: I want to know the method of changing the bike's max turn value. - by emalafeew - 08-19-2020, 12:32 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)