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 /
  • Help Room /
avatar image
0
Question by caplancrunch54 · Jul 07, 2018 at 09:18 PM · aienemyplatformer2d platformerenemyai

platform ai following player direction when close, flips normal movement ,cant get my enemy to keep his sprite position when moving back to move after following during attack

so i have a enemy that moves left and right and when he gets in attack range he looks left or right depending where the player is. it works fine but then when he moves back into his normal patrol, his sprites are flipped, im not sure what to add where

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

public class Grunt : MonoBehaviour {

 public int health;
 public int speed;
 public int gems;
 private Vector3 groundDetection;
 public bool facingRight;
 public Animator animator;
 protected Player player;
 protected SpriteRenderer sprite;
 protected Transform playerr;




 public void Awake() {
     facingRight = true;
     animator = this.transform.GetComponentInChildren<Animator>();
     player = GameObject.FindGameObjectWithTag("Player").GetComponent<Player>();
     sprite = GetComponentInChildren<SpriteRenderer>();
     
 }

 public void Start() {

 }

 public void Update() {
     float distance = Vector3.Distance(transform.localPosition, player.transform.localPosition);
     Vector3 direction = player.transform.localPosition - transform.localPosition;

    




     if (distance < 2f )
     {
         Attack();
        
     }

     else

     StartCoroutine(Move());





 }

 public void Attack() {

     float distance = Vector3.Distance(transform.localPosition, player.transform.localPosition);
     Vector3 direction = player.transform.localPosition - transform.localPosition;

    
     animator.SetBool("InCombat", true);
     animator.SetBool("InRange", true);
     animator.SetBool("Idle", false);

     if (direction.x > 0 && animator.GetBool("InCombat") == true)
     {
         sprite.flipX = false;
     }
     else if (direction.x < 0 && animator.GetBool("InCombat") == true)
     {
         sprite.flipX = true;
     }

     if (distance > 2f)
     {
         animator.SetBool("InCombat", false);
         animator.SetBool("InRange", false);
         

         StartCoroutine(Move());

         return;
     }

    





 }

 public IEnumerator Move() {


     animator.SetBool("InCombat", false);
     animator.SetBool("InRange", false);

     if (facingRight) {
         
         groundDetection = Quaternion.AngleAxis(-45, transform.forward) * transform.right;
         RaycastHit2D hit = Physics2D.Raycast(transform.position, groundDetection, 2.75f, 1 << 8);
         RaycastHit2D hit1 = Physics2D.Raycast(transform.position, Vector3.right, 1.5f, 1 << 8);
         Debug.DrawRay(transform.position, groundDetection * 2.75f, Color.green);
         Debug.DrawRay(transform.position, Vector3.right * 1.5f, Color.green);
         if (hit.collider != null) {
             animator.SetTrigger("Move");
             transform.Translate(Vector3.right * speed * Time.deltaTime);
         } else if (hit1.collider != null) {
             transform.Translate(Vector3.right * speed * Time.deltaTime);
         } else {
             animator.SetTrigger("Idle");
             yield return new WaitForSeconds(3);
             if (animator.GetCurrentAnimatorStateInfo(0).IsName("Idle")) {
                 if (facingRight) {
                     
                     Flip();
                 }
                 animator.SetTrigger("Move");
             }
         }
     } else {
         
         groundDetection = Quaternion.AngleAxis(45, transform.forward) * -transform.right;
         RaycastHit2D hit = Physics2D.Raycast(transform.position, groundDetection, 2.75f, 1 << 8);
         RaycastHit2D hit1 = Physics2D.Raycast(transform.position, -Vector3.right, 1.5f, 1 << 8);
         Debug.DrawRay(transform.position, groundDetection * 2.75f, Color.green);
         Debug.DrawRay(transform.position, -Vector3.right * 1.5f, Color.green);
         if (hit.collider != null) {
             transform.Translate(Vector3.left * speed * Time.deltaTime);
         } else if (hit1.collider != null) {
             Debug.Log("Hit stuff.");
             transform.Translate(Vector3.left * speed * Time.deltaTime);
         } else {
             animator.SetTrigger("Idle");
             yield return new WaitForSeconds(3);
             if (animator.GetCurrentAnimatorStateInfo(0).IsName("Idle")) {
                 if (!facingRight) {
                     Flip();
                 }
                 animator.SetTrigger("Move");
             }
         }
     }
 }

 private void Flip() {
     Debug.Log("Flipped");
     facingRight = !facingRight;
     Vector3 theScale = transform.localScale;
     theScale.x *= -1;
     transform.localScale = theScale;
 }

} ,so i got my enemy moving left and right and when i get into attack range he follows left and right, but when he moves back to patrolling he gets backwards.

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

public class Grunt : MonoBehaviour {

 public int health;
 public int speed;
 public int gems;
 private Vector3 groundDetection;
 public bool facingRight;
 public Animator animator;
 protected Player player;
 protected SpriteRenderer sprite;
 protected Transform playerr;




 public void Awake() {
     facingRight = true;
     animator = this.transform.GetComponentInChildren<Animator>();
     player = GameObject.FindGameObjectWithTag("Player").GetComponent<Player>();
     sprite = GetComponentInChildren<SpriteRenderer>();
     
 }

 public void Start() {

 }

 public void Update() {
     float distance = Vector3.Distance(transform.localPosition, player.transform.localPosition);
     Vector3 direction = player.transform.localPosition - transform.localPosition;

    




     if (distance < 2f )
     {
         Attack();
        
     }

     else

     StartCoroutine(Move());





 }

 public void Attack() {

     float distance = Vector3.Distance(transform.localPosition, player.transform.localPosition);
     Vector3 direction = player.transform.localPosition - transform.localPosition;

    
     animator.SetBool("InCombat", true);
     animator.SetBool("InRange", true);
     animator.SetBool("Idle", false);

     if (direction.x > 0 && animator.GetBool("InCombat") == true)
     {
         sprite.flipX = false;
     }
     else if (direction.x < 0 && animator.GetBool("InCombat") == true)
     {
         sprite.flipX = true;
     }

     if (distance > 2f)
     {
         animator.SetBool("InCombat", false);
         animator.SetBool("InRange", false);
         

         StartCoroutine(Move());

         return;
     }

    





 }

 public IEnumerator Move() {


     animator.SetBool("InCombat", false);
     animator.SetBool("InRange", false);

     if (facingRight) {
         
         groundDetection = Quaternion.AngleAxis(-45, transform.forward) * transform.right;
         RaycastHit2D hit = Physics2D.Raycast(transform.position, groundDetection, 2.75f, 1 << 8);
         RaycastHit2D hit1 = Physics2D.Raycast(transform.position, Vector3.right, 1.5f, 1 << 8);
         Debug.DrawRay(transform.position, groundDetection * 2.75f, Color.green);
         Debug.DrawRay(transform.position, Vector3.right * 1.5f, Color.green);
         if (hit.collider != null) {
             animator.SetTrigger("Move");
             transform.Translate(Vector3.right * speed * Time.deltaTime);
         } else if (hit1.collider != null) {
             transform.Translate(Vector3.right * speed * Time.deltaTime);
         } else {
             animator.SetTrigger("Idle");
             yield return new WaitForSeconds(3);
             if (animator.GetCurrentAnimatorStateInfo(0).IsName("Idle")) {
                 if (facingRight) {
                     
                     Flip();
                 }
                 animator.SetTrigger("Move");
             }
         }
     } else {
         
         groundDetection = Quaternion.AngleAxis(45, transform.forward) * -transform.right;
         RaycastHit2D hit = Physics2D.Raycast(transform.position, groundDetection, 2.75f, 1 << 8);
         RaycastHit2D hit1 = Physics2D.Raycast(transform.position, -Vector3.right, 1.5f, 1 << 8);
         Debug.DrawRay(transform.position, groundDetection * 2.75f, Color.green);
         Debug.DrawRay(transform.position, -Vector3.right * 1.5f, Color.green);
         if (hit.collider != null) {
             transform.Translate(Vector3.left * speed * Time.deltaTime);
         } else if (hit1.collider != null) {
             Debug.Log("Hit stuff.");
             transform.Translate(Vector3.left * speed * Time.deltaTime);
         } else {
             animator.SetTrigger("Idle");
             yield return new WaitForSeconds(3);
             if (animator.GetCurrentAnimatorStateInfo(0).IsName("Idle")) {
                 if (!facingRight) {
                     Flip();
                 }
                 animator.SetTrigger("Move");
             }
         }
     }
 }

 private void Flip() {
     Debug.Log("Flipped");
     facingRight = !facingRight;
     Vector3 theScale = transform.localScale;
     theScale.x *= -1;
     transform.localScale = theScale;
 }

}

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

Answer by caplancrunch54 · Jul 07, 2018 at 09:29 PM

commenting to uptick responses lol

Comment
Add comment · 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

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

213 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

Related Questions

2D Enemy Ai 0 Answers

AI stops following player. 1 Answer

Trouble making jumping spider enemies 0 Answers

why does my enemy attack backwards? 0 Answers

Making smart enemy AI using GOAP 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