|
@@ -476,6 +476,7 @@ TypedArray<RID> PhysicsTestMotionParameters2D::get_exclude_bodies() const {
|
|
|
}
|
|
|
|
|
|
void PhysicsTestMotionParameters2D::set_exclude_bodies(const TypedArray<RID> &p_exclude) {
|
|
|
+ parameters.exclude_bodies.clear();
|
|
|
for (int i = 0; i < p_exclude.size(); i++) {
|
|
|
parameters.exclude_bodies.insert(p_exclude[i]);
|
|
|
}
|
|
@@ -494,6 +495,7 @@ TypedArray<uint64_t> PhysicsTestMotionParameters2D::get_exclude_objects() const
|
|
|
}
|
|
|
|
|
|
void PhysicsTestMotionParameters2D::set_exclude_objects(const TypedArray<uint64_t> &p_exclude) {
|
|
|
+ parameters.exclude_objects.clear();
|
|
|
for (int i = 0; i < p_exclude.size(); ++i) {
|
|
|
ObjectID object_id = p_exclude[i];
|
|
|
ERR_CONTINUE(object_id.is_null());
|