OpenXRPlaneTracker

实验性: This class may be changed or removed in future versions.

继承: OpenXRSpatialEntityTracker < XRPositionalTracker < XRTracker < RefCounted < Object

Spatial entity tracker for our spatial entity plane tracking extension.

描述

Spatial entity tracker for our OpenXR spatial entity plane tracking extension. These trackers identify entities in our real space such as walls, floors, tables, etc. and map their location to our virtual space.

属性

Vector2

bounds_size

Vector2(0, 0)

PlaneAlignment

plane_alignment

0

String

plane_label

""

方法

void

clear_mesh_data()

Mesh

get_mesh()

Transform3D

get_mesh_offset() const

Shape3D

get_shape(thickness: float = 0.01)

void

set_mesh_data(origin: Transform3D, vertices: PackedVector2Array, indices: PackedInt32Array = PackedInt32Array())


信号

mesh_changed() 🔗

Emitted when our mesh data has changed the mesh instance and collision needs to be updated.


属性说明

Vector2 bounds_size = Vector2(0, 0) 🔗

The bounding size of the plane. This is a 2D size.


PlaneAlignment plane_alignment = 0 🔗

The main alignment in space of this plane.


String plane_label = "" 🔗

  • void set_plane_label(value: String)

  • String get_plane_label()

The semantic label for this plane.


方法说明

void clear_mesh_data() 🔗

Clears the mesh data for this tracker. You should only call this if you are handling your own discovery logic.


Mesh get_mesh() 🔗

Gets a mesh created from either the mesh data or from our bounding size for this plane.


Transform3D get_mesh_offset() const 🔗

Gets the transform by which to offset the mesh and collision shape from our pose to display these correctly.


Shape3D get_shape(thickness: float = 0.01) 🔗

Gets a collision shape built either from the mesh data or from our bounding size for this plane.


void set_mesh_data(origin: Transform3D, vertices: PackedVector2Array, indices: PackedInt32Array = PackedInt32Array()) 🔗

Sets the mesh data for this plane. You should only call this if you are handling your own discovery logic.