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
0
Question by drodrii · Dec 07, 2014 at 02:10 AM · animationguigameobjectanimatorupdate

Best way to - Animation Sync - Multiple gameObjects.

Hello everyone.

I'll cut straight to the point.

I created 4 gameObjects, they resemble a human.

1.Body 2.Hair 3.Shirt 4.Legs

The idea is that when I press a button the Body moves. There's a problem:

Sometimes when I click this button multiple times, the animations get out of sync. You see, as you can imagine, the idea is that everything moves with the body.

Is there any way I can bypass this?

Here's what Im doing:

GUI Button:

 void OnGUI () {
 
 _rightButton = RightButtonClicked();
 }
 


RightButtonCLicked:

 private bool RightButtonClicked(){
 
         return GUI.RepeatButton(new Rect((Screen.width - BUTTON_WIDTH - 10),Screen.height - (BUTTON_HEIGHT * 2),50,50),"", "Dpad_ArrowR");
 
     }




Now, In update I check if _rightButton == true, if it is Do this:

 public void MoveRight(){
 
         _playerAnimManager.SetMoving(true);
 
         //Moving Code...(transform..etc..etc)
     
     }


Now, here's player Anim:

 public void SetMoving(bool isMoving){
 ///_anim represents the body.....
         _anim.SetBool("isMoving",isMoving);
 
         if(_bodyController != null)
             _bodyController.SetMoving(isMoving);
         
         if(_legsController != null)
             _legsController.SetMoving(isMoving);
 
     
 
         if(_hairController != null)
             _hairController.SetMoving(isMoving);
 
     }



Is this the proper way to be doing this animation? **When user presses the button multiple most of the times the animation gets out of sync....how can I solve this!? its pretty frustrating. I've checked the animation speeds and transitions, they're all the same...

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 pocketof · Dec 07, 2014 at 07:48 PM 0
Share

maybe due to recursive function of Set$$anonymous$$oving ?

avatar image drodrii · Dec 07, 2014 at 10:48 PM 0
Share

@pocketof

How would you solve this? Set$$anonymous$$oving isn't being called by itself is it? equipments.Set$$anonymous$$oving just sets _equipmentsController anim Bool to true so the animation begins.... (equipments in this means legs,armor,head...)

0 Replies

· Add your reply
  • Sort: 

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

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

Related Questions

Handling Movement - Animations 1 Answer

Stop specific animation from Animator 0 Answers

2D Animation does not start 1 Answer

How to reset entire animator and gameobject 0 Answers

Keyframes of animated Child gameobject not shown by parent gameobjects animator issue ? 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