Skip to content

Commit

Permalink
Fix visual timeline fields not having a value when revealed by condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Jowan-Spooner committed Jun 23, 2024
1 parent 1f7471c commit aad565b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions addons/dialogic/Editor/Events/EventBlock/event_block.gd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aad565b

Please sign in to comment.