Merge pull request #64009 from KoBeWi/arrayy_lmao
Replace Array return types with TypedArray (part 2)
This commit is contained in:
commit
91e5f48ea7
75 changed files with 301 additions and 263 deletions
|
|
@ -849,7 +849,7 @@ RigidDynamicBody2D::CCDMode RigidDynamicBody2D::get_continuous_collision_detecti
|
|||
}
|
||||
|
||||
TypedArray<Node2D> RigidDynamicBody2D::get_colliding_bodies() const {
|
||||
ERR_FAIL_COND_V(!contact_monitor, Array());
|
||||
ERR_FAIL_COND_V(!contact_monitor, TypedArray<Node2D>());
|
||||
|
||||
TypedArray<Node2D> ret;
|
||||
ret.resize(contact_monitor->body_map.size());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue