Ray-based interactions in the WebXR scene — click objects, press UI buttons, or distance-grab with DistanceGrabbable. Use when the user wants to point at and interact with something at a distance, click a UI button, or test ray-based selection.
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "iwsdk-ray" 技能: 1. 下载 https://raw.githubusercontent.com/facebook/immersive-web-sdk/main/packages/starter-assets/claude-injections/skills/iwsdk-ray/SKILL.md 2. 保存为 ~/.claude/skills/iwsdk-ray/SKILL.md 3. 装好后重载技能,告诉我可以用了
Point at and interact with objects or UI elements in the XR scene using the controller ray. The workflow has a required core (steps 1-4) and optional extensions that depend on whether the target is an object or UI element, and what kind of interaction is needed.
User request is in $ARGUMENTS.
These steps always execute in order.
Check session status. If not in an active XR session, accept and enter.
xr_get_session_status → if not sessionActive → xr_accept_session
For scene objects: Find by name using scene_get_hierarchy, then get the UUID.
scene_get_hierarchy → find node matching target name
For UI elements: UI buttons/elements are children of PanelUI entities and may not have names by default. To locate precisely:
id (e.g., <button id="xr-button">)PanelDocument.name = "element-id" on the Object3D returned by getElementById() — this is harmless and makes it discoverablescene_get_hierarchyIf the element already has a name in the hierarchy, skip straight to getting its transform.
If the object is not found, report the available named objects and stop.
Get the target's world position using its UUID from step 2.
scene_get_object_transform(uuid) → use positionRelativeToXROrigin
Point the controller at the target. Default to "controller-right" unless the user specified left. Do NOT move the controller — only rotate it.
xr_look_at({ device: "controller-right", target: { x, y, z } })
The controller ray is now pointing at the target. What happens next depends on the interaction type.
Based on the user's intent and the target's components, choose ONE of the following.
For simple clicks — fires selectstart, select, selectend events. Use for UI buttons and objects that respond to Pressed component.
xr_select({ device: "controller-right" })
This is a quick press-and-release. Done.
DistanceGrabbable requires press and hold on the trigger (button index 0), not a quick select.
xr_set_gamepad_state({
device: "controller-right",
buttons: [{ index: 0, value: 1 }],
})
The object is now distance-grabbed. Behavior depends on the movementMode:
If the user wants to move the object somewhere, animate the controller to the destination.
xr_animate_to({
device: "controller-right",
position: { x, y, z },
duration: 0.5,
})
If no destination specified but user asked to "move" or "bring" the object, animate to in front of the headset: xr_get_transform({ "device": "headset" }) → place at (head.x, head.y - 0.2, head.z - 0.5).
xr_set_gamepad_state({
device: "controller-right",
buttons: [{ index: 0, value: 0 }],
})
Animate back to resting position.
xr_animate_to({
device: "controller-right",
position: { x: 0.2, y: 1.4, z: -0.3 },
duration: 0.5,
})
Default resting positions: right (0.2, 1.4, -0.3), left (-0.2, 1.4, -0.3).
Take a screenshot to confirm the result.
browser_screenshot
…
Test grab system (distance grab, one-hand grab, two-hand grab) against the grab example using the iwsdk CLI.
Test XR interactions (ray, poke/touch, dual-mode, audio, UI panel) against the poke example using the iwsdk CLI.
Find and click a target object in XR. Use when testing UI interactions, clicking buttons, or verifying interactable elements work correctly.
IWSDK project planning and best practices guide. Use when planning new IWSDK features, designing systems/components, reviewing IWSDK code architecture, or when the user asks about IWSDK patterns, ECS design, signals, or reactive programming in this codebase.
Develop and iterate on IWSDK UI panels efficiently. Use when working on PanelUI components, debugging UI layout, or improving UI design in IWSDK applications.
Test level system (LevelRoot, LevelTag, default lighting, scene hierarchy) against the poke example using the iwsdk CLI.