Game making help
110037
Member Posts: 1
Hello I'm making a game for an assignment task and I'm trying to create a 'stacking' game.
So basically the point of the game is to drag a shape out of a box and stack them onto a platform and make sure they don't fall.
I have a 70% working game so far (I think), but the problem is.. How do you make the game to go onto the next level?
So when all your shapes are stacked I need to make something trigger a time to count down (5, 4, 3, 2, 1 Next level!)
Tips for a drag and drop game would be great.
Thank you!
Comments
My thought is to have a counter attribute, that you make the number of shapes to be stacked. Once you place each shape, you add a command Counter = counter - 1. Once counter = 0, it should trigger the countdown, which you would need to code separately.