I’m facing a problem regarding preloading of strings where some of the LocalizedStrings return an empty result when accessing those through scripting. For convenience, I’ve marked all string tables as preload content and I can see that the addressables have the preload label attached. As far as I understand, preloading is part of the InitializationOperation and I should be safe as long as I wait for this operation to finish. This is done on my bootstrapping code, ensuring that the content is not loaded before the system is initialized.
However, calling something like “title.GetLocalizedString().Result” returns null.
Are you able to share a project with the problem? You should be able to use the bug reporter like normal.
Just post the bug number here so I can track it
I haven’t had time yet to isolate the issue or building a repo project. However, I went with the regular approach to just keep querying the status of the async operation and displaying the text only after it is set done. This works fine for now.