Hey there
So Ive been working my way back from maps.
Essentially, I have an old school arcade style save system.
You scroll some wheels, you get a 3 letter name and then your score is attached to it and it’s added to a map. Done.
I’m trying to organise the map into the highest value, but I’ve found myself pretty lost.
It seems It’s pretty brutal to do, let alone in blueprints.
I thought of a few ways, but I’m struggling to think how to implement them.
-
Inserting the value at a specific index, for example if the score coming in finds its place in-between all the current scores. And then bumps the rest down or out or whatever.
-
Maybe pulling the entire map contents out, sliding it in, and then rebuilding the map.
If anyone has any ideas on how to place the nodes, I’d be really helpful. Or any links I can piece it together with.
Thanks for reading.
additional infomation, its a list of 100 highscores. locally kept. not multiplayer.
update:
You know what I guess you could also make it an array instead of a map, that you could split and then take the score section and vs it against the rest of the sections and reorganise it that way.
that way Your not disconnecting the map between keys and values. Mmm the more I think about it, this seems the way to go.