1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Added docs for DRAW_ORDER_REVERSE_LIFETIME constant and minor XR log improvement

(cherry picked from commit 3c82f4a371)
This commit is contained in:
Anutrix
2023-10-05 22:11:05 +05:30
committed by Yuri Sizov
parent 2559d4b587
commit b3b9342bf1
6 changed files with 9 additions and 8 deletions

View File

@@ -198,9 +198,7 @@ void XRServer::remove_interface(const Ref<XRInterface> &p_interface) {
};
ERR_FAIL_COND_MSG(idx == -1, "Interface not found.");
print_verbose("XR: Removed interface" + p_interface->get_name());
print_verbose("XR: Removed interface \"" + p_interface->get_name() + "\"");
emit_signal(SNAME("interface_removed"), p_interface->get_name());
interfaces.remove_at(idx);
};