Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 valhan · May 26, 2014 at 05:41 AM · mouseturretworldaimrotations

Syncing 2-part turret design with mouse on rotating patform

I am essentially trying to make a space ship game where you can control your turrets by moving your mouse (freelancer style). And I have it working about 90% but ran into a little snag that has me confused.

The turret operates much like a naval gun. It has a base that can only rotate on 1 axis (y) and the barrel which only rotates up or down (x). Now, the ship that the turrets are mounted on also, obviously, rotates in all directions depending on where it's being steered.

Now, when the ship is level at the start the turret and barrel both correctly rotate towards the mouse. HOWEVER, when you pitch the ship up the turrets begin to aim strangely. Is his as a potential local/world mix up or something? Anyway, my code is below. I would appreciate any help you can offer!

(This is very rough/messy code as I have tried 100 different solutions and have plugged in and out various stuff.)

                 Transform tTurretPivot = tTurret.FindChild("GunSwivel").FindChild("TurretPivot").transform;
                 tRay = driveCamera.ScreenPointToRay(Input.mousePosition);
 
                 mouseLoc = tRay.GetPoint(targetRange);
 
                 Vector3 rotateDir = mouseLoc - tTurret.position;
                 Vector3 tempVec = new Vector3();
                 tempVec = Quaternion.LookRotation(rotateDir, tTurret.up).eulerAngles;
                 tempVec.x = 0;
                 tempVec.z = 0;
                 tTurret.localRotation = Quaternion.Euler(tempVec);
 
                 rotateDir = mouseLoc - tTurretPivot.position;
                 tempVec = Quaternion.LookRotation(rotateDir, tTurretPivot.up).eulerAngles;
                 tempVec.y = 0;
                 tempVec.z = 0;
                 tTurretPivot.localRotation = Quaternion.Euler(tempVec);
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 robertbu · May 26, 2014 at 05:48 AM

Go to my answer here:

http://answers.unity3d.com/questions/562443/turret-slerp-rotation-and-clamping.html

Click on the 'show 10 more replies' at the bottom of the answer. About half way down you will find a script that solves this problem. It is not an easy problem to solve.

Comment
Add comment · Show 1 · 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 valhan · May 26, 2014 at 06:18 AM 0
Share

Clever... That completely solved my problem! Thanks man, you ended a good 12 or so hours of frustration =)

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

20 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

Related Questions

Freeze Camera Rotation that is attached to the object in certain moments 0 Answers

Changing cursor over multiple objects 0 Answers

Problems with accurate third-person mouse aiming 0 Answers

fire towards mouse pointer 1 Answer

target tracking with lead time 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