Skip to main content

threejs-helpers

Debug and visualization helpers in three.js Core Helpers (AxesHelper, GridHelper, CameraHelper, light helpers, SkeletonHelper, bounding box helpers, PlaneHelper, PolarGridHelper, ArrowHelper) and Addons Helpers (VertexNormalsHelper, VertexTangentsHelper, RectAreaLightHelper, LightProbeHelper, ViewHelper, OctreeHelper, TextureHelper, PositionalAudioHelper, AnimationPathHelper, RapierHelper). Use only for development and editor overlays—not for shipping art; for gizmo-style manipulation use threejs-controls.

설치로 이동

소스 정보

저장소
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-helpers
license
Apache-2.0
description
Debug and visualization helpers in three.js Core Helpers (AxesHelper, GridHelper, CameraHelper, light helpers, SkeletonHelper, bounding box helpers, PlaneHelper, PolarGridHelper, ArrowHelper) and Addons Helpers (VertexNormalsHelper, VertexTangentsHelper, RectAreaLightHelper, LightProbeHelper, ViewHelper, OctreeHelper, TextureHelper, PositionalAudioHelper, AnimationPathHelper, RapierHelper). Use only for development and editor overlays—not for shipping art; for gizmo-style manipulation use threejs-controls.
## When to use this skill **ALWAYS use this skill when the user mentions:** - Visualizing axes, grids, camera frusta, shadow cameras, light directions - Showing skeleton bones, bounding boxes, normals/tangents for mesh inspection - Light probe or rect area visualization via helper classes **IMPORTANT: helpers vs production meshes** - Helpers are **debug** objects; do not use as final scene geometry. **Trigger phrases include:** - "AxesHelper", "GridHelper", "CameraHelper", "SkeletonHelper", "VertexNormalsHelper" - "辅助线", "法线显示", "包围盒调试" ## How to use this skill 1. **Attach** helper to the object it describes (e.g., `CameraHelper(light.shadow.camera)`). 2. **Update** when targets move—some helpers need per-frame refresh. 3. **Remove** in production builds or behind debug flags. 4. **Performance**: helpers add draw calls—disable when profiling performance issues. 5. **Addons**: import from `three/addons/helpers/...` paths per **threejs-dev-setup**. See [examples/workflow-light-camera-helpers.md](examples/workflow-light-camera-helpers.md). ## Doc map (official) | Docs section | Representative links | |--------------|----------------------| | Helpers | https://threejs.org/docs/AxesHelper.html | | Helpers | https://threejs.org/docs/GridHelper.html | | Helpers | https://threejs.org/docs/CameraHelper.html | | Helpers | https://threejs.org/docs/SkeletonHelper.html | ## Scope - **In scope:** Core + Addons helpers for visualization. - **Out of scope:** Production meshes or shipping art (**threejs-geometries**, **threejs-lights**); orbit/transform gizmo behavior (**threejs-controls**); editor UX parity with DCC tools; physics debug beyond helper stubs. ## Common pitfalls and best practices - Too many helpers obscures view—toggle per subsystem. - Wrong attachment parent misaligns helper transforms. - Helpers inherit scene graph transforms—parent under a debug group to batch hide/show. - Some helpers duplicate geometry cost; strip in production or use `#ifdef DEBUG` style flags. - `CameraHelper` for shadow cameras must reference `light.shadow.camera`, not the main view camera. ## Documentation and version Helpers are listed under [Helpers](https://threejs.org/docs/#Helpers) (core) and **Addons → Helpers** in [three.js docs](https://threejs.org/docs/). They are for **debug** only; production meshes and lighting should use real geometry/lights (**threejs-geometries**, **threejs-lights**). ## Agent response checklist When answering under this skill, prefer responses that: 1. Link the helper class (`AxesHelper`, `CameraHelper`, …) being used. 2. State that helpers are not shipping art—strip or gate behind debug flags. 3. Pair shadow/light helpers with **threejs-lights** tuning workflows. 4. Mention performance cost when many helpers are enabled. 5. Import paths follow **threejs-dev-setup** addon conventions. ## References - Manual (debug workflow context): https://threejs.org/manual/ - Docs index (Helpers group): https://threejs.org/docs/#Helpers - Examples: https://threejs.org/docs/DirectionalLightHelper.html ## Keywords **English:** helper, debug, axes, grid, skeleton, normals, light helper, three.js **中文:** 辅助、调试、坐标轴、网格、骨架、法线、Helper、three.js
GitHub에서 보기