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 Essential · Sep 20, 2011 at 06:15 AM · transformpositionsimple

What's wrong with this simple position script?

It's my first script. It's meant to move and rotate a camera until it reaches a boundary then reverse, and so on.

private var moveLeft = true; private var movePlusTime = 2 * Time.deltaTime; private var rotatePlusTime = 20 * Time.deltaTime;

function Update () {

 if (moveLeft) {
     transform.position += (movePlusTime,0,0);
     transform.Rotate += (0,rotatePlusTime,0);
 }
 else {
     transform.position += (-movePlusTime,0,0);
     transform.Rotate += (0,-rotatePlusTime,0);
 }
 
 // check if crossed boundaries
 if (transform.position.x > 9) {
     moveLeft = false;
 }
 if (transform.position.x < 0) {
     moveLeft = true;
 }

}

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
1
Best Answer

Answer by syclamoth · Sep 20, 2011 at 06:45 AM

The problem is that you are assigning dynamic values to your variables at the top of the function! You need to remove all the Time.deltaTimes from the top of your script, and instead use them only inside the transform.position function.

Also, the line

 transform.Rotate += (0, rotatePlusTime, 0);

is not a value assignment, it is a function! It should be used like this-

 transform.Rotate(0, rotatePlusTime * Time.deltaTime, 0);

Also, you should be using transform.Move in the same way-

 transform.Move(movePlusTime * Time.deltaTime, 0, 0);
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 Essential · Sep 20, 2011 at 08:08 PM 0
Share

Thanks, syclamoth, that helped a lot in my understanding. I didn't realize the difference between transform properties and functions before. =)

Working perfect now. (Used transform.Rotate and transform.Translate.)

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

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

c# how to change player location on 0 hp 1 Answer

Set controller to active script - how do I transform him to the correct position? 1 Answer

a child object that inherits only position from parent 2 Answers

How to make a sine wave with a transform 2 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