Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Choice event enhancements #2304

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix visual timeline fields not having a value when revealed by condition
  • Loading branch information
Jowan-Spooner committed Jun 23, 2024
commit aad565bb181cd47f6158de450e2bd5633312522e
2 changes: 2 additions & 0 deletions addons/dialogic/Editor/Events/EventBlock/event_block.gd
Original file line number Diff line number Diff line change
@@ -324,6 +324,8 @@ func recalculate_field_visibility() -> void:
else:
if _evaluate_visibility_condition(p):
if p.node != null:
if p.node.visible == false and p.has("property"):
p.node._set_value(resource.get(p.property))
p.node.show()
if p.location == 1:
has_any_enabled_body_content = true
Loading