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 hopkins.logan · Nov 20, 2013 at 04:01 PM · camera movementaddrelativeforce

Relative camera movement at fixed height

I'm trying to script a player-controlled free-moving camera of the sort used in modern RTS games, where the camera is rotatable around the X and Y axis while the middle mouse button is held down, translatable along the X and Z axis while the right mouse button is held down, and translatable along the Y axis using the scroll wheel.

I have managed to get the rotation and Y axis translation working, but I don't know how to get the right mouse button click and drag effect to work. I'd like the camera to move laterally relative to the direction it is currently facing at a fixed height. Presently, it moves along the X axis in exactly the way that I would like due to Z rotation being fixed at 0, but gets closer or further from the ground along the Z axis, depending on the amount of X rotation.

Is there a simple way to make the camera move forward in the direction it is facing without affecting its global Y height?

Here's what isn't working for me:

 //Adds Mouse X amount of relative force to X and Mouse Y amount of relative force to Z while the right button is held down    
 rightButton = Input.GetMouseButton(1);
 
 if(rightButton == true){
     xAmount = Input.GetAxis("Mouse X")*lateralSpeed;
     zAmount = Input.GetAxis("Mouse Y")*lateralSpeed;
     rigidbody.AddRelativeForce(-xAmount,0,-zAmount);
     }

Would love to know where to go from here!

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

Answer by SeppahBaws · Sep 01, 2016 at 11:24 PM

Hi, this is what I managed to figure out for a fixed Y value:

 void Update ()
 {
     SetFixedY(5.0f);
 }
 
 void SetFixedY (float n)
 {
     transform.position = new Vector3(transform.position.x, n, transform.position.z);
 }
Comment
Add comment · 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

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

18 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

Related Questions

limit AddRelativeForce 1 Answer

AddRelativeForce to another object 1 Answer

Need help with moving camera 1 Answer

Camera Controls Need Help 1 Answer

Camera Follow problem D: 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