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 Legend of Hibiki · Dec 29, 2012 at 12:17 PM · javascriptcollisionplayerclone

clone functions

Hi guys,

How i can put functions in clones like this.

 function Update(){
     if(attack){
         attack=false;
         clone = Instantiate(clone , transform.position, transform.rotation);
         clone.onCollisionEnter();
     }
 }

 function clone.onCollisionEnter(){
     print("collision");
 }


I want o detect collisions of clone in player script, is this possible?

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 Golan2781 · Dec 29, 2012 at 12:46 PM

Give the clone a reference to the player gameObject or script. Something like this:

 // PlayerScript.js
 function Update(){
     if(attack){
         clone = Instantiate(clonePrefab , transform.position, transform.rotation);
         clone.GetComponent.<CloneScript>().myParent = this; // set a reference to the player's instance of this class
     }
 }

Then in the clone's collision event, you can directly influence the player.

 // CloneScript.js
 var myParent : PlayerScript; // variable to store the player

 // other code...

 function onCollisionEnter(){
     myParent.cloneIsHit(); // call the player's function for the clone being hit
 }
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 Piflik · Dec 29, 2012 at 12:36 PM

OnCollisionEnter is called automatically by the engine, if a collision happens. You can call the function yourself, if you want to, but that doesn't test for collisions. It runs the code inside the function.

If you want to know if the player collides with a clone, use the OnCollisionEnter function of the player and use an if statement to test, if the other object is a clone, for example by using its tag.

If you want to know in the player script, if any clone is colliding with anything else (not the player) you would have to either send a message to the player or set a boolean variable in the player script to true (GetComponent()...).

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

10 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

Related Questions

make player that enters collider tagert 1 Answer

Destroy Cloned Object on Collision 1 Answer

Code for other GameObject to Collider with other GameObject 1 Answer

Decreasing Player Health On Collision with Enemy 2 Answers

Script doesn't find other script 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