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 /
avatar image
0
Question by Trild123787898 · Jan 19, 2020 at 04:45 PM · rotationscript.joints

object rotation

how can I rotate an object that has a Configurable joint component

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by NVJOB · Jan 19, 2020 at 06:23 PM

Do as in the screenshot.

alt text

Add this script to "Object Rotation":

 using UnityEngine;
 
 public class Rotation : MonoBehaviour
 {
     public float rotSpeedAll = 3;
     public float rotSpeedX = 0.5f;
     public float rotLengthX = 5;
     public float rotSpeedY = 0.5f;
     public float rotLengthY = 7;
     public float rotSpeedZ = 0.5f;
     public float rotLengthZ = 9;
 
     Transform tr;
     float rtx, rty, rtz;
 
     void Awake()
     {
         tr = transform;
     }
 
     void LateUpdate()
     {
         float timeTime = Time.time;
         if (rotSpeedX != 0) rtx = Mathf.PingPong(rotSpeedX * timeTime, rotLengthX);
         else rtx = 0;
         if (rotSpeedY != 0) rty = Mathf.PingPong(rotSpeedY * timeTime, rotLengthY);
         else rty = 0;
         if (rotSpeedZ != 0) rtz = Mathf.PingPong(rotSpeedZ * timeTime, rotLengthZ);
         else rtz = 0;
         tr.Rotate(new Vector3(rtx, rty, rtz), rotSpeedAll * Time.deltaTime);
     }
 }


A simpler option if no settings are required:

 using UnityEngine;
 
 public class Rotation : MonoBehaviour
 {
     public float rotSpeed = 3;
 
     Transform tr;
 
     void Awake()
     {
         tr = transform;
     }
 
     void LateUpdate()
     {
         tr.Rotate(new Vector3(1, 0, 0), rotSpeed * Time.deltaTime); // new Vector3(1, 0, 0) - Direction of rotation
     }
 }

ex.png (1.9 kB)
Comment
Add comment · Show 4 · Share
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
avatar image Trild123787898 · Jan 19, 2020 at 06:55 PM 0
Share

sorry but honestly speaking no result

avatar image Trild123787898 · Jan 19, 2020 at 07:49 PM 0
Share

also does not change anything! you see, you give me a script that you want to use with a body on a twird, in my case it’s not so

avatar image NVJOB Trild123787898 · Jan 19, 2020 at 08:28 PM 0
Share

Did you do as in the screenshot? You cannot rotate the object directly, you need to place what you want to rotate inside the object "joint".

This is an explanatory video - https://www.youtube.com/watch?v=dZbR2YZ6wnI

Perhaps you need to get a different effect?

avatar image Trild123787898 NVJOB · Jan 19, 2020 at 10:50 PM 0
Share

Sorry for my mistake, thank you very much

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

175 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 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 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 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 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

problem with object rotation 1 Answer

Problem with wheelJoint2D car rotations - my car needs to be able to do double jumps and mid-air rotations. 0 Answers

Script for a GUI button to change an object's rotation? 1 Answer

HELP PLEASE PROBLEM WITH JOITS 0 Answers

How do i get a reverse rotation happening on right click down 1 Answer


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