Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 QuantumP7 · Jan 05, 2015 at 12:03 PM · animatoranimator controllertriggering animation box collider

Triggering Another GameObject's Animator Triggers

I'm making a boxing game in Unity, using the latest version of Unity. I used Mixamo's Fuse software to make my main character. I put a box collider on her upper body (also known as "Tops") and set it as a trigger. "Tops" is a child of the main character's model. I put in an animation for her to react when she gets a hit to her body. I set a trigger for this animation. I put another collider on the enemy's foot to trigger a collision when it contacts the player's "Tops". The collision is working: I set the debug to let me know when the enemy's foot's collider enters the player's Tops collider. Both models (the main Player and the enemy) have been set as rigidbodies, as have the Tops and the enemy's right leg.

The problem is, that the animation for the main character's reaction is NOT being triggered when the collision occurs.

Here is the code for my Tops' collider. The Tops is a child of my model, and I have attached this script on my Tops:

 using UnityEngine;
 using System.Collections;
 
 public class BodyCollider : MonoBehaviour {
     GameObject player;
     Animator animator;
 
     // Use this for initialization
     void Start () 
     {
         player = GameObject.FindGameObjectWithTag ("Player");
         animator = player.GetComponent<Animator> ();
     }
 
     void OnTriggerEnter(Collider other)
     {
         animator.SetTrigger ("body_hit_Trigger");
 
         Debug.Log ("Body collision detected.");
     }
     
     // Update is called once per frame
     void Update () {
     
     }
 }


animator.SetTrigger does NOT work for me. How do I trigger the Player's GutHit animation from inside the Tops' script?

I have attached a pic of the Animator controller for my main Player where you can see the various triggers I have assigned. I assigned "GutHit" to the "body_hit_Trigger" trigger.

alt text

animator.jpg (358.2 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

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

2 People are following this question.

avatar image avatar image

Related Questions

Multiple Game Objects with single Animator? 1 Answer

why I have to anim.getComponent in update() function when I had done in Start () function 2 Answers

Slow down an animation from Script - C# 0 Answers

Error with my strafe animations on player 0 Answers

An empty idle animation overwrites values set through the FixedUpdate code 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