Skip to content

Commit

Permalink
Merge pull request #32 from HotariTobu:fix/HotariTobu-inspect-error
Browse files Browse the repository at this point in the history
Fix: #31
  • Loading branch information
HotariTobu authored Nov 1, 2024
2 parents 9b96533 + a803281 commit c35d564
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion addons/gd_data_binding/scripts/base_binding_source.gd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ func _get_property_list():


func _get(property):
return _source_object[property]
if property in _source_object:
return _source_object[property]

return null


func _set(property, value):
Expand Down

0 comments on commit c35d564

Please sign in to comment.