XrActionMapBinding(bpy_struct)

base class — bpy_struct

class bpy.types.XrActionMapBinding(bpy_struct)

Binding in an XR action map item

axis0_region

Action execution region for the first input axis (default 'ANY')

  • ANY Any – Use any axis region for operator execution.

  • POSITIVE Positive – Use positive axis region only for operator execution.

  • NEGATIVE Negative – Use negative axis region only for operator execution.

Type:

Literal[‘ANY’, ‘POSITIVE’, ‘NEGATIVE’]

axis1_region

Action execution region for the second input axis (default 'ANY')

  • ANY Any – Use any axis region for operator execution.

  • POSITIVE Positive – Use positive axis region only for operator execution.

  • NEGATIVE Negative – Use negative axis region only for operator execution.

Type:

Literal[‘ANY’, ‘POSITIVE’, ‘NEGATIVE’]

component_paths

OpenXR component paths (default None, readonly)

Type:

XrComponentPaths[XrComponentPath]

name

Name of the action map binding (default “”, never None)

Type:

str

pose_location

(array of 3 items, in [-inf, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Vector

pose_rotation

(array of 3 items, in [-inf, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Euler

profile

OpenXR interaction profile path (default “”, never None)

Type:

str

threshold

Input threshold for button/axis actions (in [0, 1], default 0.0)

Type:

float

classmethod bl_rna_get_subclass(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (bpy.types.Struct | None) – The value to return when not found.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct

classmethod bl_rna_get_subclass_py(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (type | None) – The value to return when not found.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties

Inherited Functions

References