Putting Full Game Unlock IAP in Game??
Hi, I have a game with about 15 levels in it. I want to make it where after the 5th level is complete the user gets a message or scene asking if they would like to purchase the full game. I have already created the IAP table and actor but what do I have to do in the actual game to make sure after completing level 5 it won't let the user go to level 6 without purchase of full game??
Thanks
Comments
Hi, I have a game with about 15 levels in it. I want to make it where after the 5th level is complete the user gets a message or scene asking if they would like to purchase the full game. I have already created the IAP table and actor but what do I have to do in the actual game to make sure after completing level 5 it won't let the user go to level 6 without purchase of full game??
Thanks
Inside the change scene behavior add a condition if iAp Purchased is true: change scene
otherwise: Spawn actor saying to purchase.
When the iAp is purchased just change iAp Purchased to true
merged dupe threads
@bjandthekatz Thank you!