dart board scoring system

hi all…

1 question…

how to create a dart board scoring system??

the situation is…

i have a ball… it will be launched towards a plane… which has a few circles on it… similar to a dart board…

i can launch the ball to the target…

but how to make it score like a “dart game”…

please help…

any help or ideas is appreciated…

thanks…

OnCollisionEnter() will do if you divide your target in as many objects as there are scoring zones.

Or OnTriggerEnter(), if you don’t want to cut your object: add invisible objects set to isTrigger covering the zones you want.

Try and let us know!