You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure how this happened, but right now it's not possible to simply use a setting like text_speed in a fresh project. It won't save (or more correctly it won't load). The only fix is to manually add the text_speed setting to the project settings. This is not documented and not the intuitive approach that we originally intended. So this should be fixed, probably by having dialogic automatically create these settings when enabled.
The text was updated successfully, but these errors were encountered:
The setting is correctly saved to global_info.txt but when loading, the settings subsystem iterates through all project settings and then overwrites the value with one loaded from global_info.txt. This is also very inefficient because the save subsystem loads and parses the file once per setting.
Additionally the settings subsystem reloads all settings on every clear() which won't have any effect after this bug is fixed as long as the save subsystem exists. I thought the settings subsytem is meant for global configuration? If so, then it should never be cleared/reloaded.
The problem
Not sure how this happened, but right now it's not possible to simply use a setting like text_speed in a fresh project. It won't save (or more correctly it won't load). The only fix is to manually add the text_speed setting to the project settings. This is not documented and not the intuitive approach that we originally intended. So this should be fixed, probably by having dialogic automatically create these settings when enabled.
The text was updated successfully, but these errors were encountered: