There will be downtimes for #BlockJump this noon/evening to get this all done.
I will also have to re-deploy the contract. Which means your try count will be reset and the highscoretable will start from anew (sorry @TezBlocks ๐).
Hi, I need some help in c#
I added 2 players in my HighScoreTable :
HST.Add(new BestScores("AXL", 300));
HST.Add(new BestScores("BOB", 200));
How to update the AXL score ? I tried
HST[0].Score = 400;
but it doesn't work... :(
#csharp#gamedev#unity