Remove error print from XRServer.find_interface

Co-authored-by: David Snopek <dsnopek@gmail.com>
This commit is contained in:
Aaron Franke 2023-08-17 14:36:21 -05:00
parent 0511f9d9a7
commit 4310d49ff9
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF

View file

@ -216,17 +216,12 @@ Ref<XRInterface> XRServer::get_interface(int p_index) const {
};
Ref<XRInterface> XRServer::find_interface(const String &p_name) const {
int idx = -1;
for (int i = 0; i < interfaces.size(); i++) {
if (interfaces[i]->get_name() == p_name) {
idx = i;
break;
return interfaces[i];
};
};
ERR_FAIL_COND_V_MSG(idx == -1, nullptr, "Interface not found.");
return interfaces[idx];
return Ref<XRInterface>();
};
TypedArray<Dictionary> XRServer::get_interfaces() const {