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 Stealthygolem · Oct 13, 2014 at 09:11 AM · c#arraylistattackenemies

C# Enemy list for player to attack 2D

Hello, the game is 2d topdown horizontal and vertical movement, just to get an idea. My PlayerAttack.cs script now works to target only one enemy at a time, and you can't change target. So it's predetermined from the get-go, and then automatically assigns me a new enemy, which is the only one I can hit. Obviously, I want to be able to move around attacking whomever I want. Relevant code:

 private GameObject target
 
 [...]
 
     private void MeleeAttack(){
         target = GameObject.FindGameObjectWithTag("Enemy");
         float distance = Vector3.Distance(target.transform.position, transform.position);
         
         if(distance <1.5f){
             EnemyHealth eh = (EnemyHealth)target.GetComponent("EnemyHealth");
             eh.curhp -= 10;
             Debug.Log ("You whacked an enemy for 10hp");
         }
     }

I'm thinking I have to implement a list, using "FindGameObjectsWithTag("Enemy");" with a GameObject[] or something. But, I have issues figuring out the syntax semantics. Any help would be greatly appreciated, thanks!

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 Stealthygolem · Oct 14, 2014 at 12:34 AM

Under the course of the day, I found a solution that worked for me. The code was adjusted quite a bit, but I am going to post my entire PlayerAttack.cs script so other people can find an answer later, if they stumble upon something similar to what I did, personally.

 using UnityEngine;
 using System.Collections;
 using System.Collections.Generic;
 
 public class PlayerAttack3 : MonoBehaviour {
 
     private float attackTimer;
     private float cd;
     private Animator m_Animator;
     public bool isAttacking = false;
     
     GameObject FindClosestEnemy() {
         GameObject[] gos;
         gos = GameObject.FindGameObjectsWithTag("Enemy");
         GameObject closest = null;
         float distance = Mathf.Infinity;
         Vector3 position = transform.position;
         foreach (GameObject enemy in gos) {
             Vector3 diff = enemy.transform.position - position;
             float curDistance = diff.sqrMagnitude;
             if (curDistance < distance) {
                 closest = enemy;
                 distance = curDistance;
             }
         }
         return closest;
     }
     void Example() {
         print (FindClosestEnemy().name);
     }
 
     void Start() {
         attackTimer = 2;
         cd = 0.5f;
         m_Animator = GetComponent<Animator>();
     }
     
     void LateUpdate() {
         m_Animator.SetBool("IsAttacking", isAttacking);
         if(attackTimer > 0) {
             attackTimer -= Time.deltaTime;
         }
         if(attackTimer < 0) {
             attackTimer = 0;
         }
 
         GameObject target = FindClosestEnemy();
         if(Input.GetButtonDown("Fire1")){
             if(attackTimer == 0) {
                 isAttacking = true;
                 attackTimer = cd;
                 EnemyHealth2 eh = (EnemyHealth2)target.GetComponent("EnemyHealth2");
                 eh.curhp -= 10;
                 Debug.Log ("You whacked enemy for 10hp");
                 if(eh.curhp <= 0) {
                     Destroy (eh.gameObject);
                 }
                 }
         }
         else {
             isAttacking = false;
         }
     }
 }

I hope it can be of help to anyone in the future. Keep on coding!

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

29 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

Related Questions

Pick between two floats 2 Answers

Cannot convert float to int when only using floats (C#) 3 Answers

Problem with List not filling using add method in a foreach loop 1 Answer

Value will not return from ArrayList, C# 1 Answer

How can I make a GameObject face a GameObject with a specific Tag? 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