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 Justin Warner · Nov 21, 2010 at 11:18 PM · gameobjectmoving

Move a GameObject for certain amount of time, and then move it again for a certain amount of time...

Hey, So, I tried to do this a horrible way (Looping... don't ask), and it didn't really work, but I was wondering what approach/how you would do this.

I need a GameObject to move left for like, 5 seconds, then right for 5 seconds... and back and forth...

If you have an idea on how to do this, please say so, I'll be thinking about it though...

Thanks, Justin W.

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

2 Replies

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

Answer by Hibame · Nov 21, 2010 at 11:34 PM

A quick way to go about this is to work with the Time. When you start moving store a float of the current time with Time.time.

float savedTime = Time.time;

From there you can do

if(Time.time - savedTime >= 5)

to know if 5 seconds to has passed since you set the variable. All of this should be put inside something like the update function.

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 Justin Warner · Nov 21, 2010 at 11:35 PM 0
Share

$$anonymous$$akes sesne, will try it out... Thanks!

avatar image
0

Answer by Justin Warner · Nov 21, 2010 at 11:47 PM

function Update () {
float savedTime;
savedTime = Time.time;
if(Time.time - savedTime <= 5)
{
    transform.Translate(Vector3.forward * Time.deltaTime * 10);
 }
 else if (Time.time - savedTime >= 5 && Time.time - savedTime  <= 10)
 {
    transform.Translate(Vector3.forward * Time.deltaTime * -10);
 }
 else if (Time.time - savedTime > 10)
 {
    savedTime = Time.time;
 }
}

Gives error: Assets/Move.js(2,6): UCE0001: ';' expected. Insert a semicolon at the end.

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 Hibame · Nov 21, 2010 at 11:52 PM 0
Share

I was working in C#. You should convert the float savedTime; to what ever js equivalent. I think there needs to be a var in there somewhere.

avatar image Justin Warner · Nov 21, 2010 at 11:55 PM 0
Share

Omg, sorry, I'm so used to java from school, forget that Unity changes it a bit.

avatar image fireDude67 · Jan 19, 2011 at 11:08 PM 0
Share
  • Don't post new questions/comments/whatever as answers

avatar image Justin Warner · Jan 20, 2011 at 02:37 PM 0
Share

LOL wow, it's from November when I just joined... congrats.

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

No one has followed this question yet.

Related Questions

Mouse drag with specific angle 1 Answer

jump ball in different direction 1 Answer

Moving a GameObject freezes Unity (Possible Infinite Loop) 2 Answers

using Contains(gameObject) to find and destroy a gameObject from a list 2 Answers

Moving game objects 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