AeThex-Engine-Core/engine/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationBaseHeader.xml
MrPiglr 9dddce666d
🚀 AeThex Engine v1.0 - Complete Fork
- Forked from Godot Engine 4.7-dev (MIT License)
- Rebranded to AeThex Engine with cyan/purple theme
- Added AI-powered development assistant module
- Integrated Claude API for code completion & error fixing
- Custom hexagon logo and branding
- Multi-platform CI/CD (Windows, Linux, macOS)
- Built Linux editor binary (151MB)
- Complete source code with all customizations

Tech Stack:
- C++ game engine core
- AI Module: Claude 3.5 Sonnet integration
- Build: SCons, 14K+ source files
- License: MIT (Godot) + Custom (AeThex features)

Ready for Windows build via GitHub Actions!
2026-02-23 05:01:56 +00:00

31 lines
1.6 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<class name="OpenXRSpatialCapabilityConfigurationBaseHeader" inherits="RefCounted" experimental="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
<brief_description>
Wrapper base class for OpenXR Spatial Capability Configuration headers.
</brief_description>
<description>
Wrapper base class for OpenXR Spatial Capability Configuration headers. This class needs to be implemented for each capability configuration structure usable within OpenXR's spatial entities system.
</description>
<tutorials>
</tutorials>
<methods>
<method name="_get_configuration" qualifiers="virtual">
<return type="int" />
<description>
Return a pointer (encoded as an [code]int64_t[/code]) to a struct holding the spatial capability configuration data. The memory for this struct should remain accessible as long as this object remains instantiated.
</description>
</method>
<method name="_has_valid_configuration" qualifiers="virtual const">
<return type="bool" />
<description>
Return [code]true[/code] if this object contains a valid configuration that can be retrieved when calling [method _get_configuration].
</description>
</method>
<method name="has_valid_configuration" qualifiers="const">
<return type="bool" />
<description>
Returns [code]true[/code] if this object contains a valid configuration that can be used when calling [method OpenXRSpatialEntityExtension.create_spatial_context].
</description>
</method>
</methods>
</class>