Fix setter/getter types in BBVariable

This commit is contained in:
Serhii Snitsaruk 2024-03-04 16:00:13 +01:00
parent 88df78c4a2
commit 7cf4a4b3b8
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ public:
void copy_prop_info(const BBVariable &p_other);
// * Editor binding methods
String get_binding_path() const { return data->binding_path; }
void set_binding_path(const String &p_binding_path) { data->binding_path = p_binding_path; }
NodePath get_binding_path() const { return data->binding_path; }
void set_binding_path(const NodePath &p_binding_path) { data->binding_path = p_binding_path; }
bool has_binding() { return data->binding_path.is_empty(); }
// * Runtime binding methods