Go to file
name 5007dd9440 Improve debug views: add 2D graph, fix flipped axes, hide invisible landmarks, show data pre-calibration
- Delete REFACTOR.md, add PAUSE_SIGNAL.md for pause gesture rework planning
- Fix vertically flipped FRONT/SIDE 3D views (remove incorrect Y negation)
- Hide landmarks with visibility < 0.3 and exclude from auto-scale
- Show step graphs before calibration completes (use raw position as baseline)
- Add 4th debug view showing 2D normalized landmarks
- Expose landmarks2D from usePoseLoop
- Flip step graph Y axis to match intuitive direction

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 20:35:32 +00:00
docs
public Remove non-YouTube songs and local audio files 2026-04-15 17:28:38 +00:00
src Improve debug views: add 2D graph, fix flipped axes, hide invisible landmarks, show data pre-calibration 2026-04-15 20:35:32 +00:00
tools/audio-offset
.gitignore
CLAUDE.md
PAUSE_SIGNAL.md Improve debug views: add 2D graph, fix flipped axes, hide invisible landmarks, show data pre-calibration 2026-04-15 20:35:32 +00:00
README.md
eslint.config.js
index.html
package-lock.json Add custom StepMania track upload feature 2026-04-15 15:53:33 +00:00
package.json Add custom StepMania track upload feature 2026-04-15 15:53:33 +00:00
sources.md
tsconfig.app.json
tsconfig.json
tsconfig.node.json
vercel.json
vite.config.ts

README.md

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])