• 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 fazilmahesania · May 13, 2018 at 09:39 AM · animationprefabprefabsanimationsprefab-instance

Zombie is working fine but it's prefab is creating issue in animation in unity,Zombie is working fine but it's prefab is creating issue in animation in unity Ask Question

I am creating a FPS shooter game in unity.Bellow is the script i have used on zombie and it's working fine but when i create prefab of that zombie it also works but it stops doing the attack animation and other things are working fine what should i do now? Please help me.....I have used three different zombies and used same script on them all are working great but when i create prefab of those zombies they again create issue and stops doing attack animation although my health is decreasing when they come closer. please help me out in this i don't know if my code is wrong or i have done any mistake in unity settings but it's very difficult to do it and make it correct what should i do guys it's my final year project project and i am stuck in this very hard situation.

using System.Collections; using System.Collections.Generic; using UnityEngine;

 public class PlayerChaseWithoutFaceFollowing : MonoBehaviour {

     public Transform player;

     static Animator anim;


     // Use this for initialization
     void Start()
     {
         anim = GetComponent<Animator>(); // assigning component
     }

     // Update is called once per frame
     void Update()
     {
         Vector3 direction = player.position - this.transform.position; //to get the direction 


       
         if (anim.GetBool("Death"))
         {
             anim.SetBool("isWalking", false);
             anim.SetBool("isIdle", false);
             anim.SetBool("isAttacking", false);
         }
         else
         {
             if (Vector3.Distance(player.position, this.transform.position) < 10 )
             {
                 direction.y = 0;
                 this.transform.rotation = Quaternion.Slerp(this.transform.rotation, Quaternion.LookRotation(direction), 0.1f); // rotate enemy to player
                 anim.SetBool("isIdle", false); // no more idle state

                 if (direction.magnitude > 3) // start walking
                 {
                     this.transform.Translate(0, 0, 0.5f);
                     anim.SetBool("isWalking", true); //start walking animation
                     anim.SetBool("isAttacking", false);
                 }
                 else
                 {
                     anim.SetBool("isWalking", false);
                     anim.SetBool("isAttacking", true);


                 }
             }
             else
             {
                 anim.SetBool("isIdle", true);
                 anim.SetBool("isWalking", false);
                 anim.SetBool("isAttacking", false);
             }

         }
      

     }
 },I am creating a FPS shooter game in unity.Bellow is the script i have used on zombie and it's working fine but when i create prefab of that zombie it also works but it stops doing the attack animation and other things are working fine what should i do now? Please help me.....I have used three different zombies and used same script on them all are working great but when i create prefab of those zombies they again create issue and stops doing attack animation although my health is decreasing when they come closer. please help me out in this i don't know if my code is wrong or i have done any mistake in unity settings but it's very difficult to do it and make it correct what should i do guys it's my final year project project and i am stuck in this very hard situation.

using System.Collections; using System.Collections.Generic; using UnityEngine;

 public class PlayerChaseWithoutFaceFollowing : MonoBehaviour {

     public Transform player;
  
     static Animator anim;

     //bool pursuing = false;

     // Use this for initialization
     void Start()
     {
         anim = GetComponent<Animator>(); // assigning component
     }

     // Update is called once per frame
     void Update()
     {
         Vector3 direction = player.position - this.transform.position; //to get the direction 


     
         if (anim.GetBool("Death"))
         {
             anim.SetBool("isWalking", false);
             anim.SetBool("isIdle", false);
             anim.SetBool("isAttacking", false);
         }
         else
         {
             if (Vector3.Distance(player.position, this.transform.position) < 10 )
             {
                 direction.y = 0;
                 this.transform.rotation = Quaternion.Slerp(this.transform.rotation, Quaternion.LookRotation(direction), 0.1f); // rotate enemy to player
                 anim.SetBool("isIdle", false); // no more idle state

                 if (direction.magnitude > 3) // start walking
                 {
                     this.transform.Translate(0, 0, 0.5f);
                     anim.SetBool("isWalking", true); //start walking animation
                     anim.SetBool("isAttacking", false);
                 }
                 else
                 {
                     anim.SetBool("isWalking", false);
                     anim.SetBool("isAttacking", true);


                 }
             }
             else
             {
                 anim.SetBool("isIdle", true);
                 anim.SetBool("isWalking", false);
                 anim.SetBool("isAttacking", 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

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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

233 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 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

how to call the animation of prefab 0 Answers

prefab navagent doesnt work,prefab navmesh doesnt work 1 Answer

how to fix this dont play animation and prefabs?,how to fix this 0 Answers

Can't modify BoxCollider center/size on base prefab 0 Answers

Prefab disables a script out of runtime. 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