Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 11 Next capture
2021 2022 2023
1 capture
11 Jun 22 - 11 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 Shegon · Jul 27, 2015 at 10:41 AM · animatorspriterenderertransition

2D animation transitions turn all components visible

I have a 2D character with lots of components. There are a number of animations, but each animation only has a few components visible. My problem is that when transitioning from one animation to another, all components turn on. What I would like is for a smooth transition between animations with only the components from the first animation visible until the second animation starts.

I've tried making the transition between the two animations instantaneous, but then it's not smooth. I tried to write a script to turn components invisible when the trigger for the transition happens, but it won't override the keyframes of the animations.

If anyone has a suggestion on how to achieve this, I would appreciate any ideas.

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 oxred · Sep 11, 2015 at 04:56 PM 0
Share

@Shegon Hello! Were You sucsessful in solving this problem? I've just faced the same trouble with the transitions and unfortunatly I have no idear how to solve the problem(

avatar image Shegon · Sep 13, 2015 at 09:34 AM 0
Share

Hi @oxred. Well, $$anonymous$$inda. I couldn't do anything with the visibility of the components since that's controlled by the keyframes. I didn't control the sorting layer with the keyframes, though. So what I did was make it so that when one animation started to move into another, I made a script push all unused components behind a background layer so they couldn't be seen. Then when the transition finished, the script brought them back to their original sorting layers. I made a variable to keep track of what sorting layer the thing started on. I basically copied the below script and put it on each component.

public class arm_left_front : $$anonymous$$onoBehaviour {

 public Animator animator;
 public int layer_tracker;
 
 // Use this for initialization
 void Start () {
     
     layer_tracker = GetComponent<SpriteRenderer>().sortingOrder;
 }
 
 // Update is called once per frame
 void Update () {
     
     if (animator.GetBool("place_holder")==true){
         
         GetComponent<SpriteRenderer>().sortingOrder=-25;
     }
     
     if (animator.GetBool("place_holder")==false){
         GetComponent<SpriteRenderer>().sortingOrder=layer_tracker;
     }
 }

}

Then I replaced "place_holder" with whatever the animation trigger was. It's probably not the most elegant solution, but it does work. I hope that helps.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

2D animation sprite renderer not updating 1 Answer

Animator State Changing but animation changes only after one animation is complete 0 Answers

2D animations transitioning too quickly and looping before finishing 2 Answers

Mecanim animator layers 0 Answers

I cant add transition on unity animator 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