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 nibbcnoble · Jul 31, 2011 at 05:11 PM · vector3transform.translate

moving and rotating my object in 3d

I'm making a flight game and I'm currently just trying to get my ship to move at a constant speed and be able to turn in 3 dimensions. If i don't use my moveforward.js file, everything works fine, the camera follows behind the ship as it rotates and its great. but there seems to be a compounding problem when i add velocity along the objects z axis. if i turn more than 90 degrees in any direction the ship still wants to go in a positive z direction( relative to the world). so i start flying backwards. Here are my files:

movedirection.js (attached to the ship)

var turnspeed : float= 6.0;

function Update () {

var x = Input.GetAxis("Horizontal") Time.deltaTime turnspeed; var z = Input.GetAxis("Vertical") Time.deltaTime turnspeed; transform.Rotate(z, 0, -x);

}

moveforward.js (attached to the ship)

var speed : float=1.0; function FixedUpdate () {

moveDirection = transform.TransformDirection(Vector3.forward)*Time.deltaTime*speed;

transform.Translate(moveDirection);

}

follow.js (attached to the chase camera)

var target : Transform;

var distance = 1.6;

var damping =2.0;

var smoothRotation = true;

var rotationDamping =2.0;

function LateUpdate() {

 var wantedPosition = target.TransformPoint(0, 0, -distance);

     transform.position = Vector3.Lerp (transform.position, wantedPosition,

     Time.deltaTime * damping);



if (smoothRotation) {

     var wantedRotation = Quaternion.LookRotation(target.position -   

     transform.position, target.up);

     transform.rotation = Quaternion.Slerp (transform.rotation, wantedRotation,  

     Time.deltaTime * rotationDamping);

}

else transform.LookAt (target, target.up);

}.

I think I'm just to close to the problem right now, its like its on the tip of my tongue and I can't quite get it.

Comment
Add comment · Show 1
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 RetepTrun · Jul 31, 2011 at 07:20 PM 0
Share

1st highlight the script and press the 10101010 button

2 are you moving by physics or by transform magic?

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by nibbcnoble · Jul 31, 2011 at 08:55 PM

Im moving by way of transform.translate

var speed : float=1.0; function FixedUpdate () {

moveDirection = transform.TransformDirection(Vector3.forward)*Time.deltaTime*speed;

transform.Translate(moveDirection);

}

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Problem with diagonal movement 1 Answer

Confusion in deciding the units for game objects 1 Answer

UI objects move at different speeds on different resolutions 1 Answer

Smooth movement using transform.Translate 2 Answers

C# Smoothing Out transform.Translate 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