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
Describe the bug
When editing the scene of a custom layout layer, there is not currently a way to edit the control nodes without the properties being overrided by the exported settings at the scene root. Unchecking "Apply Override on Ready" does not prevent this.
To Reproduce
Steps to reproduce the behavior:
Go to the Syles tab.
Add a new premade visual novel style.
Click Vn Textbox Layer, then the Make Custom button at the top followed by Full Layout.
Open the custom_vn_textbox_layer.tscn scene.
Uncheck the Apply Override on Ready option.
Go to the DialogTextPanel Node.
Under Theme Overrides, replace the panel texture with a new StyleBoxTexture material and add a texture to it.
Test the scene, and the custom panel texture will not be used.
Expected behavior
I would expect that disabling apply override on ready would prevent the built-in settings from being used and give the user full control over the custom scene.
System (please complete the following information):
OS: Windows 11
Godot Version: 4.3
Dialogic Version: 2.0 Alpha 15
Solutions
Workaround
In the dialogic_layout_layer.gd file, I changed the apply_export_overrides() function. I changed the last line to if apply_overrides_on_ready: _apply_export_overrides()
EDIT: this workaround will mess with the other layout layers, so it must be full custom
The text was updated successfully, but these errors were encountered:
The problem
Describe the bug
When editing the scene of a custom layout layer, there is not currently a way to edit the control nodes without the properties being overrided by the exported settings at the scene root. Unchecking "Apply Override on Ready" does not prevent this.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I would expect that disabling apply override on ready would prevent the built-in settings from being used and give the user full control over the custom scene.
System (please complete the following information):
Solutions
Workaround
In the dialogic_layout_layer.gd file, I changed the apply_export_overrides() function. I changed the last line to
if apply_overrides_on_ready: _apply_export_overrides()
EDIT: this workaround will mess with the other layout layers, so it must be full custom
The text was updated successfully, but these errors were encountered: