Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

What game engine? 

Here's what I use to do that in Unity. Put this code inside your dart and run it when it hits the board

GameObject dartBoard = GameObject.FindWithTag("DartBoard");   
if (dartBoard != null)  {      
    transform.SetParent(darboard.transform, true);  
}

Note that the dart board would need the tag "DartBoard"

I'm using gamemaker, but thanks a lot, if you know anything for it pls tell me, ill try that as well, but thanks eitherway!