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 Royall · May 22, 2014 at 02:12 PM · playerenemyfollowaround

Enemy's gather around the player.. How?!

So I am working on some combat for my game... I have several enemy's wandering in an area. When the player attacks they will come towards the player. I use this code to get a position in front of the player:

 var dir = player.position - transform.position;
 var playerpoint : Vector3 = player.position - dir.normalized * 2;

Now this works nice. But if I have 3 enemy's attacking me (melee), and I walk around a bit. They eventually gather all up at the same spot, which is of course not what I want.

Can someone give me directions for this code to let it also check how many enemy's are next to the player (with TAG Enemy). And get a position next to the player but also next to the other enemy so they all gather around the player nicely (maybe in a circle).

Hope someone can help!

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Royall · May 23, 2014 at 03:09 PM

This seems to work to get a angle:

 var angle = 180;
 var newPosition = transform.position + Quaternion.AngleAxis(angle, Vector3.up) * Vector3.forward * 3; 

Will work with this to assign and check for a 'slot', thanks for the tip

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
avatar image
0

Answer by MakeCodeNow · May 22, 2014 at 03:46 PM

The common solution to this problem is to have a predetermined number of "slots" around the player. Each slot is at a particular offset from the player, at different points around a circle. These slots translate with the player, but they do not rotate with them. When an enemy attacks the player, they see if a slot is available, reserve it, and then move towards that offset instead of towards the player directly. If no slots are available, then they move towards the player but stay further away, like the bad guys in a kung fu movie.

Comment
Add comment · Show 2 · 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 Royall · May 22, 2014 at 05:26 PM 0
Share

@$$anonymous$$akeCodeNow That's a nice idea! Do you know how I could deter$$anonymous$$e the slot positions... Lets say I want 8 slots around the player at distance of 2 units... How would I get the position of each slot given the position of the player?

avatar image MakeCodeNow · May 22, 2014 at 09:54 PM 0
Share

Check out circular coordinates. Use them to get the local position then just add in the player position.

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

22 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

Related Questions

Enemy backing away from player after going around corner? 1 Answer

Enemy is not stopping following the player 2 Answers

Enemy reorienting for player 1 Answer

unity 2d C # script follows the enemy player. 3 Answers

Camera rotation around player while following. 6 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