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 Gozc · Nov 15, 2011 at 07:03 PM · collisionplayercharacterdestroy

Destroy character when collision with enemy

hello i want to make my character to be destroyed when collisions with an enemy object(something like squid that moves(imported fbx model(no collisions or something)). What i must do?What collision i must add to the enemy and which script i must put on him? Aaah i almost forgot...Character has a camera(with camera script to follow the player)if it matters. Character picture: http://imageshack.us/photo/my-images/689/characterw.png/

enemy picture: http://imageshack.us/photo/my-images/528/enemy.png/

Thank you guys if you respond you are awsome

Comment
Add comment · Show 1
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 Uzair_Afridi78 · Nov 17, 2015 at 01:07 PM 0
Share

both of the above scripts will destroy the enemies, but what will be the script to destroy player character when it collides with the enemies game object ??please suggest me your precious answers

3 Replies

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

Answer by aldonaletto · Nov 15, 2011 at 07:20 PM

You can drag your model to the scene and add a box or sphere collider to it (menu Component/Physics/...). Adjust its dimensions, set Is Trigger in the Inspector and attach an OnTriggerEnter code to it:

function OnTriggerEnter(other: Collider){
  if (other.tag == "Player"){ // check if it's the player, if you want
    Destroy(other.gameObject);
  }
}
Comment
Add comment · Show 1 · 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 Wentzel · Nov 15, 2011 at 07:23 PM 0
Share

Yours makes a lot of sence and executes faster.

avatar image
1

Answer by Wentzel · Nov 15, 2011 at 07:15 PM

Collision Tutorial & Destroying Tutorial

Attach to your Character.

 function OnCollisionEnter(Col : Collision){
   if(Col.gameObject.name == "enemy"){
     Destroy(gameObject.find("enemy"));
     }
 }

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 Asmata · Jul 01, 2020 at 06:03 AM

Enemy attack the player and death my player send me script sir

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

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How can I destroy my Player if only his Head or Body touch the ground. 3 Answers

Player not getting destroyed when touched by enemies 4 Answers

collision with wall so player dies 1 Answer

collision wont work 1 Answer

Flying collision 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