Config changes: - Renamed gridSnap to locationSnap for clarity - Fixed configMenu to reference correct property - Added debug logging to setAppConfig Code cleanup: - Removed commented duplicate exitXR call Dependencies: - Upgraded @babylonjs packages from 7.21.5 to 8.16.2 - Upgraded @mantine packages from 7.12.0 to 7.17.8 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
export type AppConfigType = {
|
|
id?: number,
|
|
currentDiagramId?: string,
|
|
locationSnap?: number,
|
|
rotateSnap?: number,
|
|
createSnap?: number,
|
|
turnSnap?: number,
|
|
physicsEnabled?: boolean,
|
|
newRelicKey?: string,
|
|
newRelicAccount?: string,
|
|
passphrase?: string,
|
|
flyMode?: boolean,
|
|
|
|
} |