Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by Naphier · Oct 14, 2015 at 09:39 AM · rotationphysicsrigidbody3d

Trying to simulate roll of character's body down a luge slide

Hi folks! I've got this pretty close to the way I want it. The object is for this penguin to slide down a luge course and roll left or right with the turns. The setup is like this: I have a rigidbody go with a capsule collider shaped for the character (gunther_rb_parent). The luge course and character's physics material have no friction and no drag to simulate ice. gunther_rb_parent has the model of the actual character attached as a child. gunther_rb_parent has a configurable joint on it to lock local rotation on the Y and Z axis.

luge setup

rb

The gunther model has a calculated rotation applied to his y rotation based on his change in Z rotation. This is the attempt to make the character roll based on how much he turns.

The code has boiled down to something very simple now that I'm only affecting the child (gunther) of the rigidbody (gunther_rb_parent) which has no physics.

 float lastAngY = 0f;
 public bool useExtraRotation = false;
 float lastAngZ = 0f;
 bool isAngleZSet = false;
 [Range(-1f,1f)]
 public float angZFactor = 1f;
 void FixedUpdate()
 {
     if (Input.GetKey(KeyCode.Space))
     {
         rb.AddForce(-gameObject.transform.up * force);
     }
 
     if (!useExtraRotation)
         return;
 
     float eulerZ = gunther.transform.eulerAngles.z * angZFactor; //angZFact = -1f to 1f
     float yAddAng = 0f;
 
     if (!isAngleZSet)
     {
         isAngleZSet = true;
         lastAngZ = eulerZ;
     }
 
     float dAngZ = eulerZ - lastAngZ;
     lastAngZ = eulerZ;
 
 
 
     yAddAng = Mathf.Clamp(dAngZ , -10f, 10f);
     AddToLast5Rot(yAddAng);
     gunther.transform.Rotate(Vector3.up, yAddAng, Space.Self);
 }


OK. So the problem that remains is that I really only want the character to turn when in a turn then on a straghtaway I want him to try to face back forward. I can't wrap my brain around the math for this and would love some help! A video of this system in action can be seen here:

http://naplandgames.com/images/forum_posts/gunther_luge_testing.mp4

Thanks!!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

38 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Get object to rotate freely influenced by gravity 0 Answers

Use Mobile Joystick with Unity 3d RigidBody 1 Answer

Rotate Rigidbody on Y Axis based on Velocity on X and Z axis 3 Answers

stack-type game problem (blocks fall). bloques se caen en juego de apilar cajas 0 Answers

Rotate Rigidbody towards target rotation using AddTorque() 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges