I tried to use the same style but instead of StringTableEntry I tried to use AssetTableEntry.
How do you get the localized sprite from AssetTableEntry?
Oh yes we don’t have a method inside the entry here.
The simplest way is to just use the AssetDatabase. LocalizationSettings.AssetDatabase.GetLocalizedAsset<Texture>("My Table", "My Entry:);
You can also get the asset from the AssetTable using GetAssetAsync.
Ill create a task to add support directly to the entry for the future.
Also for the string you don’t need to pass in the formatter, it will use the SelectedLocale formatter by default.
Thats fine to do but if you do plan to hold a reference then you should use Addressables.ResourceManager.Aquire so that it does not get unloaded and Release when you have finished holding on to the reference. Otherwise, the value may suddenly go null on you at some point when all references are released.