Skip to content

Commit

Permalink
Fix missing editor property for FmodEventEmitter3D nodes (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofama committed Nov 1, 2023
1 parent ea798c1 commit aa629e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func _parse_property(object: Object, type: Variant.Type, name: String, hint_type
return name == "event_name" || name == "event_guid"

func _parse_category(object: Object, category: String):
if category != "FmodEventEmitter2D":
if category != "FmodEventEmitter2D" and category != "FmodEventEmitter3D":
return
var editor_property := _event_editor_property_scene.instantiate()
editor_property.initialize(_open_project_explorer_callable, "event_name", "event_guid")
Expand Down

0 comments on commit aa629e8

Please sign in to comment.