Skip to main content

threejs-controls

Addon camera and object manipulation controls: OrbitControls, MapControls, FlyControls, FirstPersonControls, TrackballControls, ArcballControls, DragControls, PointerLockControls, TransformControls; damping, target focal point, and integration with the animation loop. Use for editor-style navigation and gizmos—not a full game character controller stack; pair with Raycaster selection patterns in threejs-objects when transforming selections.

설치로 이동

소스 정보

저장소
full-stack-skills/threejs-skills
최근 소스 활동
2026년 9월 15일 10:24
감지된 SKILL.md 언어
영어
스타
5
포크
2

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
2 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
threejs-controls
license
Apache-2.0
description
Addon camera and object manipulation controls: OrbitControls, MapControls, FlyControls, FirstPersonControls, TrackballControls, ArcballControls, DragControls, PointerLockControls, TransformControls; damping, target focal point, and integration with the animation loop. Use for editor-style navigation and gizmos—not a full game character controller stack; pair with Raycaster selection patterns in threejs-objects when transforming selections.
## When to use this skill **ALWAYS use this skill when the user mentions:** - Orbiting/panning/dolly around a target, inertia/damping, min/max distance/polar angles - Map-like pan (MapControls) or flying (FlyControls) - Transform gizmo translate/rotate/scale with `TransformControls` - Dragging objects in plane (DragControls), pointer lock FPS (PointerLockControls) **IMPORTANT: controls vs webxr** | Context | Skill | |---------|--------| | Desktop/browser camera nav | **threejs-controls** | | XR controller poses | **threejs-webxr** | **Trigger phrases include:** - "OrbitControls", "TransformControls", "MapControls", "PointerLockControls" - "轨道", "变换控制器", "漫游" ## How to use this skill 1. **Import** from addons path (**threejs-dev-setup**). 2. **Construct** with `(camera, domElement)`; for `TransformControls` also attach to renderer events. 3. **Animation loop**: when `enableDamping`, call `controls.update()` each frame. 4. **TransformControls**: wire `dragging-changed` to disable Orbit temporarily; sync with selection from **threejs-objects**. 5. **Constraints**: set min/max distance/angles to avoid flipping or underground views. 6. **Dispose**: `controls.dispose()` when tearing down. See [examples/workflow-orbit-damping.md](examples/workflow-orbit-damping.md). ## Doc map (official) | Docs section | Representative links | |--------------|----------------------| | Controls | https://threejs.org/docs/OrbitControls.html | | Controls | https://threejs.org/docs/TransformControls.html | | Controls | https://threejs.org/docs/MapControls.html | | Controls (index) | https://threejs.org/docs/#Controls | ## Scope - **In scope:** Official addons controls usage patterns. - **Out of scope:** Full physics character motor; mobile gesture frameworks. ## Common pitfalls and best practices - Forgetting `update()` with damping enabled causes drift never settling. - TransformControls fighting with Orbit—pause one while using the other. - Pointer lock requires user gesture and exit handling. ## Documentation and version Controls are under [Controls](https://threejs.org/docs/#Controls) (Addons) in [three.js docs](https://threejs.org/docs/). API details (`enableDamping`, events) evolve—link `OrbitControls` / `TransformControls` pages for the user’s three.js version. ## Agent response checklist When answering under this skill, prefer responses that: 1. Link the specific controls class from the docs. 2. State `controls.update()` when damping is on, every frame. 3. Coordinate `TransformControls` with selection / **threejs-objects** raycasting. 4. Separate desktop navigation from **threejs-webxr** locomotion. 5. Call `dispose()` on controls when unmounting canvas. ## References - https://threejs.org/docs/#Controls - https://threejs.org/docs/OrbitControls.html - https://threejs.org/docs/TransformControls.html ## Keywords **English:** orbitcontrols, transformcontrols, mapcontrols, damping, camera controls, three.js **中文:** OrbitControls、轨道、TransformControls、变换控制器、阻尼、three.js
GitHub에서 보기