I’m making a platformer map and want an end-of-game widget to contain the number of times a player has jumped. How can I do this?
it depends, do u want it to count up, down, hit a certain number of times it jumps, …
like, end the game at a certain number of jumps…
nah, I just want to have the total amount of jumps a player has made throughout the game
that would be difficult… plus when key pressed isn’t a thing… I think, keyword think, that this is not possible AT THE MOMENT but maybe later on it will be!
the best way to do this is to add a zone, and every time that someone jumps and enters the zone, it increments the counter, does this help?
since platformer goes upward usually this would be like 1000000000000000000000000000000+ zone count. even in horizontal type platformer it would be 100000000000+ sooo yeah
that’s what I thought until I realized I need hundreds of zones that cost 300 memory. my map is pretty huge which causes a memory issue.
alright, well i tried
Yeah memory issue and also the zone limit…
Its not impossible but, its hard…