I have a device called CurrencyManager. It has a function called UpdateCurrencyUI.
UpdateCurrencyUI(): void=
SavedPlayerCurrencies := PersistenceManager.GetPlayerStats(Player)
set Currencies = SavedPlayerCurrencies.Currencies
for (Index -> Currency : Currencies):
CurrencyValue := Currency.Value * 1.0
if (TextBlock := TextBlocks[Index]):
Print("TextBlock found")
TextBlock.SetText(MakeRoundedMessage(CurrencyValue))
When I call this function from the CurrencyManager device, it works perfectly as it has created the TextBlocks array with the Initialization() function. When I call it from my other device called CosmeticShopDevice it doesn’t. It won’t print the “TextBlock found” as the TextBlocks array appears to not exist in this instance.
if (Price <= Currency.Value):
if:
OldData := PlayerStatsMap[Player]
var PlayerCurrencyMap : [player]Player_Currency = map{}
set PlayerStatsMap[Player] = player_stats_table{
MakePlayerStatsTable<constructor>(OldData)
OwnedCosmetics := OldData.OwnedCosmetics + array{CosmeticIndex}
EquippedCosmetics := OldData.EquippedCosmetics + array{CosmeticIndex}
}
not PlayerCurrencyMap[Player]
set PlayerCurrencyMap[Player] = Player_Currency{Player := Player}
PC := PlayerCurrencyMap[Player]
then:
PC.SpendCurrency(CurrencyIndex, Price)
Item.VFXPowerup.Pickup(Player)
If I call the PC.Initialization() method it will print “TextBlock found” but it seems that it creates a new TextBlocks array that is not the same, so it sets the text of a text_block that is not being displayed on screen. How can I solve this?
Thank you so much!