Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 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 KnightRiderGuy · Sep 10, 2017 at 01:50 PM · animationuicanvassetactivepanel

UI Animation Not Playing

I've been trying to figure this out for a long time now. I have an animation that plays just fin the first time round. I deactivate the canvas panel with the associated animation in order to show an other panel. But when I reactivate my Laser Charge animation panel what happens is it plays the sound effect just fine, but my animation does not play, it just shows the final state of the animation (Last frame) So I'm not sure what I'm doing wrong??

 //animator reference
     private Animator animLaserUp;
 
     void Start () {
         //unpause the game on start
         //Time.timeScale = 1;
         //get the animator component
         animLaserUp = LaserChargeAni.GetComponent<Animator>();
         //disable it on start to stop it from playing the default animation
         animLaserUp.enabled = false;
         //anim.enabled = true;
         //DontDestroyOnLoad(this.gameObject);
     }
     
     public void LaserNoise1()
     {
         SFXmanager SFXl = FindObjectOfType<SFXmanager> ();
         SFXl.PlayLaserChargingSFX ();
     }
 
 
     public void StartLaserCharge(){
         StartCoroutine(LaserCharge());
     }
 
     IEnumerator LaserCharge(){
         yield return new WaitForSeconds (0.9f); // wait time
         LaserChargeAni.SetActive (true);
         animLaserUp.enabled = true;
 
         SFXmanager SFXl = FindObjectOfType<SFXmanager> ();
         SFXl.PlayLaserChargingSFX ();
         animLaserUp.Play("LaserChargeUpAni");
         yield return new WaitForSeconds (5.0f); // wait time
         animLaserUp.enabled = false;
         LaserChargeAni.SetActive (false);
         //MainPanel.SetActive (true);
         //Return to main screen
         //CameraSwitcher cs1 = FindObjectOfType<CameraSwitcher>();
         //cs1.EnableCamera1();
         LaserScopeScreenManager LSCM = FindObjectOfType<LaserScopeScreenManager>();
         LSCM.LaserCamStart ();
         LaserScopePanel.SetActive(true);
         masterPanelManagerObject.LaserScopePanelActive = true;
         yield return new WaitForSeconds (0.2f); // wait time
         LaserChargePanel.SetActive (false);
 
     }
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

Answer by Eddieg0226 · May 02, 2019 at 06:31 PM

Make sure you set the Update Mode of your animator to Unscaled Time if you want to play animations while your game is paused.

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 viesc123 · Mar 16 at 04:21 PM 0
Share

Stupid. I just made the same mistake. Thanks for the response! XD

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

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

Related Questions

Animation not playing on game object activated by script 3 Answers

Unity Animation performance massive drop 1 Answer

Panels and CanvasGroup in UI management 0 Answers

Animating a Panel,Animating a panel 1 Answer

rendering panel w/children 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