|
I am trying to initiate a health drop when a particle collision takes place. I am trying to use a for/in loop to reference each possible collider and I am obviously doing something wrong. My code is:
When run and a particle is shot I get this error on the line starting the for/in : ApplicationException: Argument is not enumerable (does not implement System.Collections.IEnumerable). Boo.Lang.Runtime.RuntimeServices.Error (System.String name) Boo.Lang.Runtime.RuntimeServices.GetEnumerable (System.Object enumerable) UnityScript.Lang.UnityRuntimeServices.GetEnumerator (System.Object obj) vomitHit.OnParticleCollision (UnityEngine.GameObject other) (at Assets/Scripts/vomitHit.js:29) Any help is very much appreciated!
(comments are locked)
|
|
Your for-loop is trying to loop 1 component, not many. You need to use GetComponents instead of GetComponent:
On a side note: You should declare your Array of objects as its own variable before you loop them to increase performance and readability. Thank you for your help, I have no errors now but the collision won't register now for some reason..is there anything you may be able to think of that could help me out again?
Mar 20 '11 at 05:39 PM
bodomchild0926
(comments are locked)
|
|
For performance reasons you could also use Camera.main instead of GameObject.Find("MainCamera"). thanks I will do that
Mar 20 '11 at 05:40 PM
bodomchild0926
(comments are locked)
|
|
I now have no errors now but the collision won't register now for some reason..is there anything anyone may be able to think of that could help me out again? I'd suggest you make a separate question for this, where you tell more in depth about your problems. But to maybe this will help you: Description OnParticleCollision is called when a particle hits a collider. This can be used to apply damage to a game object when hit by particles. This message is sent to all scripts attached to the WorldParticleCollider and to the Collider that was hit. The message is only sent if you enable sendCollisionMessage in the inspector of the WorldParticleCollider. Specifically the last part: "The message is only sent if you enable sendCollisionMessage"
Mar 21 '11 at 09:42 AM
Skjalg
(comments are locked)
|
