Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 Joppix · Nov 23, 2016 at 07:32 AM · c#unity 5inputanimationsanimation script

How to play the animation completely on mouse click

Hi! We're having some troubles with the animation sistem. Basically, we want to make the attack animation play on mouse click, but it just does the first frame of the animation, while we want the animation to complete when you press the mouse button.

This is the code we are using: void Update () { if (Input.GetKeyDown (KeyCode.Mouse0)) animator.SetBool ("BaseAttack1", true); else animator.SetBool ("BaseAttack1", false); }

Comment
Add comment · Show 1
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 Mehul-Rughani · Nov 23, 2016 at 12:13 PM 0
Share

@Joppix Ins$$anonymous$$d of setting bool "BaseAttack1" to false use exit time in the animator controller. Just make "BaseAttack1" to true on mouse click

Default-------->BaseAttack1=true--->Animation Play----->Exit time---->Default

Hope you understand what i mean

1 Reply

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

Answer by aditya007 · Nov 23, 2016 at 12:33 PM

but it just does the first frame of the animation

Because that's what you're telling Unity to do. Update() runs every frame. So, basically what you're doing here is playing animation at mouse click and then stopping it the in the next frame.

Input.GetKeyDown (KeyCode.Mouse0)) will return true at Mouse click, so the bool will be set to true and animation will start. But, user stopped pressing mouse and in the next frame you are setting the bool to false, causing it to stop the Animation.

What you should do is remove the else part and in the Animator Window, select the transition and check "Has Exit Time".

Comment
Add comment · Show 2 · 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 edcx · Nov 23, 2016 at 03:08 PM 0
Share

Also, mouse click could be used as a swich for animation play/stop. By setting the BaseAttack1 value to negative one.
void Update () { if (Input.Get$$anonymous$$eyDown ($$anonymous$$eyCode.$$anonymous$$ouse0)) animator.SetBool ("BaseAttack1", !animator.GetBool("BaseAttack1")); }

avatar image Joppix · Nov 23, 2016 at 06:15 PM 0
Share

Well, you helped me, but i had to keep the else part. That's because if the animation would be repeated endlessly, i just cheked " Has Exit Time ". I'm gonna post other question soon, 'cause we are still learning and we have several problems to solve, so stay tuned 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

7 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Rabit movement animation and coding problem 1 Answer

2 animations keep switching at a rapid pace 1 Answer

Quick Question About Player Movement And Animations. Please Help! 3 Answers

Mouse and Oculus Touch Controller Inputs 0 Answers

C# Script The same Input play two animations every time 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