Merge pull request #56492 from akien-mga/remove-author-docstrings

This commit is contained in:
Rémi Verschelde 2022-01-12 15:24:17 +01:00 committed by GitHub
commit 585231a172
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
93 changed files with 85 additions and 460 deletions

View file

@ -39,8 +39,6 @@
struct BlitToScreen;
/**
@author Bastiaan Olij <mux213@gmail.com>
The XR interface is a template class on top of which we build interface to different AR, VR and tracking SDKs.
The idea is that we subclass this class, implement the logic, and then instantiate a singleton of each interface
when Godot starts. These instances do not initialize themselves but register themselves with the AR/VR server.
@ -138,4 +136,4 @@ VARIANT_ENUM_CAST(XRInterface::Capabilities);
VARIANT_ENUM_CAST(XRInterface::TrackingStatus);
VARIANT_ENUM_CAST(XRInterface::PlayAreaMode);
#endif // !XR_INTERFACE_H
#endif // XR_INTERFACE_H

View file

@ -37,8 +37,6 @@
#include "servers/xr_server.h"
/**
@author Bastiaan Olij <mux213@gmail.com>
The positional tracker object as an object that represents the position and orientation of a tracked object like a controller or headset.
An AR/VR Interface will registered the trackers it manages with our AR/VR server and update its position and orientation.
This is where potentially additional AR/VR interfaces may be active as there are AR/VR SDKs that solely deal with positional tracking.
@ -99,4 +97,4 @@ public:
VARIANT_ENUM_CAST(XRPositionalTracker::TrackerHand);
#endif
#endif // XR_POSITIONAL_TRACKER_H