diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-06-27 20:50:25 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-06-27 20:50:25 -0300 |
commit | eeab3502d5eec68dbce2d7b7ff822a14e6a3599c (patch) | |
tree | 4b04c300f75bf49372a4900e2456b972a580650b /scene/2d/remote_transform_2d.cpp | |
parent | 9bab5134cfd4f0095545ae58fcf6a10dc07dc7d1 (diff) |
Changes to how node paths are selected from property, allowing setting a hint.
Diffstat (limited to 'scene/2d/remote_transform_2d.cpp')
-rw-r--r-- | scene/2d/remote_transform_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/remote_transform_2d.cpp b/scene/2d/remote_transform_2d.cpp index da764e032b..63c3d78dfd 100644 --- a/scene/2d/remote_transform_2d.cpp +++ b/scene/2d/remote_transform_2d.cpp @@ -201,7 +201,7 @@ void RemoteTransform2D::_bind_methods() { ClassDB::bind_method(D_METHOD("set_update_scale", "update_remote_scale"), &RemoteTransform2D::set_update_scale); ClassDB::bind_method(D_METHOD("get_update_scale"), &RemoteTransform2D::get_update_scale); - ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "remote_path"), "set_remote_node", "get_remote_node"); + ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "remote_path", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Node2D"), "set_remote_node", "get_remote_node"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "use_global_coordinates"), "set_use_global_coordinates", "get_use_global_coordinates"); ADD_GROUP("Update", "update_"); |