mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Update navigation obstacle API
Updates navigation obstacle API.
This commit is contained in:
parent
66423d440e
commit
c1fc331b88
18 changed files with 413 additions and 115 deletions
|
|
@ -123,7 +123,13 @@ public:
|
|||
RID obstacle_create() override { return RID(); }
|
||||
void obstacle_set_map(RID p_obstacle, RID p_map) override {}
|
||||
RID obstacle_get_map(RID p_obstacle) const override { return RID(); }
|
||||
void obstacle_set_avoidance_enabled(RID p_obstacle, bool p_enabled) override {}
|
||||
bool obstacle_get_avoidance_enabled(RID p_obstacle) const override { return false; }
|
||||
void obstacle_set_use_3d_avoidance(RID p_obstacle, bool p_enabled) override {}
|
||||
bool obstacle_get_use_3d_avoidance(RID p_obstacle) const override { return false; }
|
||||
void obstacle_set_radius(RID p_obstacle, real_t p_radius) override {}
|
||||
void obstacle_set_height(RID p_obstacle, real_t p_height) override {}
|
||||
void obstacle_set_velocity(RID p_obstacle, Vector3 p_velocity) override {}
|
||||
void obstacle_set_position(RID p_obstacle, Vector3 p_position) override {}
|
||||
void obstacle_set_vertices(RID p_obstacle, const Vector<Vector3> &p_vertices) override {}
|
||||
void obstacle_set_avoidance_layers(RID p_obstacle, uint32_t p_layers) override {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue