|
Hi I am wondering how you could create a simple point system using a GUI and picking up an object. Thanks!
(comments are locked)
|
|
The simplest answer I can think of is:
Thank you! This is very helpful.
Nov 29 '10 at 04:23 PM
chris 3
(comments are locked)
|
|
Hi.. This is the main script i have for my score system or point system. Name this script Score. Then, -create a sphere. -add Sphere Collider on sphere -tag the Sphere as Coin -add this javascript to your character and your ready to go. You have a pick up system with score on your screen(GUI). Thank you. Thank you for your help!
Nov 29 '10 at 04:22 PM
chris 3
hey im planning on using this, but i want it so that i get if my turret is destroyed could you please help, if you need it here is the script for my turret destruction: var explosion : Transform; function OnTriggerEnter(hit : Collider) //function OnControllerColliderHit(hit : ControllerColliderHit) { if(hit.gameObject.tag == "wormProjectile") { Destroy(hit.gameObject); var exp = Instantiate(explosion, gameObject.transform.position, Quaternion.identity); }
Apr 19 '11 at 02:15 AM
jacques 1
For this script, I have tried it but the counter doesn't change. How do I fix this? this may help you and me
Mar 29 '12 at 03:15 AM
fjcym
Your above explanation is clear but the script does not work.
Oct 06 '12 at 03:51 PM
munaeem
(comments are locked)
|
