Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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
1
Question by latsushi · Feb 27, 2014 at 03:43 AM · animationrewind

Animation.Rewind Isn't Working

Hello Everyone,

I have an animation clip that opens a door. It works great. I'm having trouble closing the door. Instead of creating an animation clip that closes the door I noticed there's an animation.rewind command. It isn't working and I was hoping one of you fine ladies/gentlemen could help me out.

Here's my code:

public class OpenDoorTrigger : MonoBehaviour {

 public bool triggered = false;

 void Update(){
     if (Input.GetKeyDown(KeyCode.E) && triggered == true){
         Debug.Log("EEEEE");
         animation.Play("OpenDoor");
     }
     else if (Input.GetKeyDown(KeyCode.E) && triggered == false && !animation.isPlaying){
         Debug.Log("REWIND");
         animation.Rewind("OpenDoor");
     }

 }

I did a Debug.Log test and it does Log 'Rewind' so animation.Rewind("OpenDoor"); isn't working. Does anyone know why?

I'd appreciate any feedback. Thank you for your time and have a nice day.

Comment
Add comment · Show 2
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 RyanZimmerman87 · Feb 27, 2014 at 04:13 AM 1
Share

Just a guess since I never used animation.Rewind, but you might need to stop the OpenDoor animation before it actually completes.

I'm not sure if rewind is supposed to actually play it back normally or simply jump it back to the start?

I think you would be much better off just creating a new animation for the door to close it, I think things could get a bit messy with the Rewind stuff but once again I never used it so just speculating.

I think you might want to just set the animation speed to being negative ins$$anonymous$$d of rewind though if you are deter$$anonymous$$ed to not just create a new "CloseDoor" animation.

Here's a link about that:

http://answers.unity3d.com/questions/16198/animation-reverse-for-movement.html

avatar image ahiyantra · May 11 at 02:06 PM 0
Share

Even after over 8 years, i've the same problem with unity.

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by Baroque · Feb 28, 2014 at 04:56 AM

Animation.Rewind just sets the animation back to frame zero. You want to use play, but set the playback rate to be negative to play the animation in reverse:

 void Update()
 {
     AnimationState state = animation["OpenDoor"];
     if (Input.GetKeyDown(KeyCode.E) && triggered == true){
        Debug.Log("EEEEE");
        state.speed = 1.0;
        animation.Play("OpenDoor");
     }
     else if (Input.GetKeyDown(KeyCode.E) && triggered == false && !animation.isPlaying){
        Debug.Log("REWIND");
        animation.Play("OpenDoor");
        state.speed = -1.0;
        state.time = state.length;
     }
 }
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 ahiyantra · May 11 at 02:05 PM 0
Share

Even after over 8 years, your solution was extremely helpful. Thanks!

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

24 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 avatar image avatar image avatar image avatar image

Related Questions

Rewind() does not reset Model to original position in a Nested Animation Model Rig 0 Answers

ANimation doesn't rewind on animation.Stop 3 Answers

pingpong animation question 2 Answers

Can the animation editor create local rotational data? 3 Answers

Adding animation clips via script 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