Merge pull request #60655 from smix8/navigation_region_rid_4.x
Add get_region_rid() to NavigationRegion2D and NavigationRegion3D
This commit is contained in:
commit
4e06ce7840
6 changed files with 30 additions and 0 deletions
|
|
@ -387,6 +387,10 @@ uint32_t NavigationRegion2D::get_layers() const {
|
|||
return NavigationServer2D::get_singleton()->region_get_layers(region);
|
||||
}
|
||||
|
||||
RID NavigationRegion2D::get_region_rid() const {
|
||||
return region;
|
||||
}
|
||||
|
||||
/////////////////////////////
|
||||
#ifdef TOOLS_ENABLED
|
||||
Rect2 NavigationRegion2D::_edit_get_rect() const {
|
||||
|
|
@ -534,6 +538,8 @@ void NavigationRegion2D::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("set_layers", "layers"), &NavigationRegion2D::set_layers);
|
||||
ClassDB::bind_method(D_METHOD("get_layers"), &NavigationRegion2D::get_layers);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_region_rid"), &NavigationRegion2D::get_region_rid);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("_navpoly_changed"), &NavigationRegion2D::_navpoly_changed);
|
||||
|
||||
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "navpoly", PROPERTY_HINT_RESOURCE_TYPE, "NavigationPolygon"), "set_navigation_polygon", "get_navigation_polygon");
|
||||
|
|
|
|||
|
|
@ -117,6 +117,8 @@ public:
|
|||
void set_layers(uint32_t p_layers);
|
||||
uint32_t get_layers() const;
|
||||
|
||||
RID get_region_rid() const;
|
||||
|
||||
void set_navigation_polygon(const Ref<NavigationPolygon> &p_navpoly);
|
||||
Ref<NavigationPolygon> get_navigation_polygon() const;
|
||||
|
||||
|
|
|
|||
|
|
@ -73,6 +73,10 @@ uint32_t NavigationRegion3D::get_layers() const {
|
|||
return NavigationServer3D::get_singleton()->region_get_layers(region);
|
||||
}
|
||||
|
||||
RID NavigationRegion3D::get_region_rid() const {
|
||||
return region;
|
||||
}
|
||||
|
||||
/////////////////////////////
|
||||
|
||||
void NavigationRegion3D::_notification(int p_what) {
|
||||
|
|
@ -198,6 +202,8 @@ void NavigationRegion3D::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("set_layers", "layers"), &NavigationRegion3D::set_layers);
|
||||
ClassDB::bind_method(D_METHOD("get_layers"), &NavigationRegion3D::get_layers);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_region_rid"), &NavigationRegion3D::get_region_rid);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("bake_navigation_mesh"), &NavigationRegion3D::bake_navigation_mesh);
|
||||
ClassDB::bind_method(D_METHOD("_bake_finished", "nav_mesh"), &NavigationRegion3D::_bake_finished);
|
||||
|
||||
|
|
|
|||
|
|
@ -57,6 +57,8 @@ public:
|
|||
void set_layers(uint32_t p_layers);
|
||||
uint32_t get_layers() const;
|
||||
|
||||
RID get_region_rid() const;
|
||||
|
||||
void set_navigation_mesh(const Ref<NavigationMesh> &p_navmesh);
|
||||
Ref<NavigationMesh> get_navigation_mesh() const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue