mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Add static methods to create RayQueryParameters
This commit is contained in:
@@ -184,6 +184,8 @@ Vector<RID> PhysicsRayQueryParameters3D::get_exclude() const {
|
||||
}
|
||||
|
||||
void PhysicsRayQueryParameters3D::_bind_methods() {
|
||||
ClassDB::bind_static_method("PhysicsRayQueryParameters3D", D_METHOD("create", "from", "to", "collision_mask", "exclude"), &PhysicsRayQueryParameters3D::create, DEFVAL(UINT32_MAX), DEFVAL(Vector<RID>()));
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_from", "from"), &PhysicsRayQueryParameters3D::set_from);
|
||||
ClassDB::bind_method(D_METHOD("get_from"), &PhysicsRayQueryParameters3D::get_from);
|
||||
|
||||
@@ -220,6 +222,16 @@ void PhysicsRayQueryParameters3D::_bind_methods() {
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
|
||||
Ref<PhysicsRayQueryParameters3D> PhysicsRayQueryParameters3D::create(Vector3 p_from, Vector3 p_to, uint32_t p_mask, const Vector<RID> &p_exclude) {
|
||||
Ref<PhysicsRayQueryParameters3D> params;
|
||||
params.instantiate();
|
||||
params->set_from(p_from);
|
||||
params->set_to(p_to);
|
||||
params->set_collision_mask(p_mask);
|
||||
params->set_exclude(p_exclude);
|
||||
return params;
|
||||
}
|
||||
|
||||
void PhysicsPointQueryParameters3D::set_exclude(const Vector<RID> &p_exclude) {
|
||||
parameters.exclude.clear();
|
||||
for (int i = 0; i < p_exclude.size(); i++) {
|
||||
|
||||
Reference in New Issue
Block a user