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 birns92 · Oct 13, 2015 at 11:28 AM · animationbuttonscript.attack

Button press for Animations

I want to be able to initiate the "attack" animation upon button press. But I can not quite get it to work with the script I am using. I recieve the build error message:


"The type or namespace name 'function' could not be found (are you missing a using directive or an assembly reference?) (CS0246) (Assembly-CSharp)"


How can i fix this problem to have the button initiate the animation.

 using UnityEngine;
 using System.Collections;
 
 public class animator : MonoBehaviour 
 
 {
     function Update ()
     {
         if ( Input.GetButtonDown("Attack") ) {
             transform.animation.Play();
         }
     }
 
         
     }



alt text

alt text

attack-button.jpg (76.2 kB)
animator.png (22.7 kB)
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
0
Best Answer

Answer by petrix · Oct 13, 2015 at 12:00 PM

Hi, I think you have several mistakes here. first things first:

The build error you are getting is because to declare a function in C# you don't use "function" that's for javascript, so to declare correctly the Update function it should be like:

 void Update ()  {
 /* Your code here **/
 }

The second error you have there is in the Input.GetButtonDown("Attack"). that's never going to work because that function is for capturing keyboard events or mouse events and things like that, like for example "if key 'a' is pressed do something". to make that button work you'll have to bind a method to it's event. Take a look at this video to learn the basics about UI and events:

https://unity3d.com/es/learn/tutorials/modules/beginner/ui/ui-events-and-event-triggers

once you have fixed it you have to add a variable to the animator. Let's name it attack and make it "Trigger". then instead of using transform.animation.Play(); you use animator.SetTrigger("attack"); the "animator" I put before should be the Animator component of the game object, to obtain it you have to use the getComponent(); function here You have another link where it explains further the use of variables inside the animator

http://docs.unity3d.com/es/current/Manual/AnimationParameters.html

It's quite a long reply but I think you have here all you need to make that work. If you have any doubts about it ask ;).

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 birns92 · Oct 14, 2015 at 12:17 AM 0
Share

Thank You Very $$anonymous$$uch! Everything works great now.

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

What am I doing wrong with this attack script? 2 Answers

activate animation using another scripts 1 Answer

Animation script help light problem 0 Answers

Play Animation on Button Press 1 Answer

Touch button to transition through Animations 1 Answer


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