- 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!
38 lines
1.8 KiB
XML
38 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="OpenXRSpatialEntityTracker" inherits="XRPositionalTracker" experimental="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
|
|
<brief_description>
|
|
Base class for Positional trackers managed by OpenXR's spatial entity extensions.
|
|
</brief_description>
|
|
<description>
|
|
These are trackers created and managed by OpenXR's spatial entity extensions that give access to specific data related to OpenXR's spatial entities. They will always be of type [code]TRACKER_ANCHOR[/code].
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<members>
|
|
<member name="entity" type="RID" setter="set_entity" getter="get_entity" default="RID()">
|
|
The spatial entity associated with this tracker.
|
|
</member>
|
|
<member name="spatial_tracking_state" type="int" setter="set_spatial_tracking_state" getter="get_spatial_tracking_state" enum="OpenXRSpatialEntityTracker.EntityTrackingState" default="2">
|
|
The spatial tracking state for this tracker.
|
|
</member>
|
|
<member name="type" type="int" setter="set_tracker_type" getter="get_tracker_type" overrides="XRTracker" enum="XRServer.TrackerType" default="8" />
|
|
</members>
|
|
<signals>
|
|
<signal name="spatial_tracking_state_changed">
|
|
<param index="0" name="spatial_tracking_state" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
</signals>
|
|
<constants>
|
|
<constant name="ENTITY_TRACKING_STATE_STOPPED" value="1" enum="EntityTrackingState">
|
|
This anchor has stopped tracking.
|
|
</constant>
|
|
<constant name="ENTITY_TRACKING_STATE_PAUSED" value="2" enum="EntityTrackingState">
|
|
Tracking is currently paused.
|
|
</constant>
|
|
<constant name="ENTITY_TRACKING_STATE_TRACKING" value="3" enum="EntityTrackingState">
|
|
This anchor is currently being tracked.
|
|
</constant>
|
|
</constants>
|
|
</class>
|