public void UpdateImageDisplay() { if (pokemonData == null) { ImageDisplay.Source = null; return; } ImageDisplay.Source = PokemonUtils.GetPkmnImage(pokemonData.DexData.ImagePath); }
public void Update(DexData dd) { dexData = dd; STRDots.SetStats(dexData.Attributes.GetStatByTag("Strength"), false); DEXDots.SetStats(dexData.Attributes.GetStatByTag("Dexterity"), false); VITDots.SetStats(dexData.Attributes.GetStatByTag("Vitality"), false); SPEDots.SetStats(dexData.Attributes.GetStatByTag("Special"), false); INSDots.SetStats(dexData.Attributes.GetStatByTag("Insight"), false); ImageDisplay.Source = PokemonUtils.GetPkmnImage(dexData.ImagePath); }