-
Easy Grid Object
Has anybody used this? Is it viable for snapping board pieces to specific locations? I am creating a checkers style game and I can't really figureout how to properly set this up and execute it so that it is accurate and works at all.
I really just want to snap pieces to specific locations that are active moves whe nthe mouse is let go. I have all the functionality except for the snap.
If worst comes to worst I could do this with objects but I would like to try this if it's easy to use and I may have missed something.
Thanks,
-
Re: Easy Grid Object
You can do this without the extension by doing "Set X to X("active")/32*32" and "Set Y to Y("Active")/32*32". But if you want to use the extension you do "Set X to SnapX( "Easy Grid object", X( "Active" ))" and so on.
-
Re: Easy Grid Object
Great Brandon Thanks. That works perfectly