diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-12 15:24:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 15:24:17 +0100 |
commit | 585231a17200bec3cf36e9ccbf2b48bf679e2fd4 (patch) | |
tree | d99961cbad7a04e8a33d053d055b9f730a5a84dd /scene/3d | |
parent | 4e83fbcd145e2b0a7b0382bff6eb97ad64f3e752 (diff) | |
parent | ba2bdc478b9eaad99b6c2a3c860e3dc0fe73a1a6 (diff) |
Merge pull request #56492 from akien-mga/remove-author-docstrings
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/skeleton_ik_3d.cpp | 4 | ||||
-rw-r--r-- | scene/3d/xr_nodes.h | 8 |
2 files changed, 3 insertions, 9 deletions
diff --git a/scene/3d/skeleton_ik_3d.cpp b/scene/3d/skeleton_ik_3d.cpp index 6089c785a2..c645009c72 100644 --- a/scene/3d/skeleton_ik_3d.cpp +++ b/scene/3d/skeleton_ik_3d.cpp @@ -28,10 +28,6 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -/** - * @author AndreaCatania - */ - #include "skeleton_ik_3d.h" #ifndef _3D_DISABLED diff --git a/scene/3d/xr_nodes.h b/scene/3d/xr_nodes.h index 8e1ef1a4fb..5675cbd944 100644 --- a/scene/3d/xr_nodes.h +++ b/scene/3d/xr_nodes.h @@ -34,13 +34,10 @@ #include "scene/3d/camera_3d.h" #include "servers/xr/xr_positional_tracker.h" -/** - @author Bastiaan Olij <mux213@gmail.com> -**/ - /* XRCamera is a subclass of camera which will register itself with its parent XROrigin and as a result is automatically positioned */ + class XRCamera3D : public Camera3D { GDCLASS(XRCamera3D, Camera3D); @@ -181,6 +178,7 @@ public: Our camera and controllers will always be child nodes and thus place relative to this origin point. This node will automatically locate any camera child nodes and update its position while our XRController3D node will handle tracked controllers. */ + class XROrigin3D : public Node3D { GDCLASS(XROrigin3D, Node3D); @@ -204,4 +202,4 @@ public: ~XROrigin3D() {} }; -#endif /* XR_NODES_H */ +#endif // XR_NODES_H |