Files
filament/docs_src/src_raw/wip/sky/index.html
Mathias Agopian 7c64fb9cf3 SimSky: Optimize URL state sharing and fix UI synchronization (#9649)
- **Key Minification**: Refactored serialization to use short keys
  (e.g., `p`, `c`, `w`) instead of verbose property names, reducing URL 
  size by ~50%.
- **State Optimization**: Removed redundant `sunDirection` from 
  serialized state.
- **Cleanup**: Removed backward compatibility for verbose keys 
- **Bug Fix**: Fixed a regression where UI sliders failed to update on 
  load by ensuring array properties (e.g., `sunHalo`) are mutated 
  in-place rather than replaced.

DOCS_FORCE
2026-01-27 23:52:49 -08:00

39 lines
749 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Analytic Skybox</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<link href="styles.css" rel="stylesheet">
<style>
body {
margin: 0;
overflow: hidden;
background: #000;
}
canvas {
touch-action: none;
width: 100%;
height: 100%;
outline: none;
}
</style>
</head>
<body>
<canvas></canvas>
<!-- Filament -->
<script src="filament.js"></script>
<script src="gl-matrix-min.js"></script>
<!-- UI -->
<script src="lil-gui.js"></script>
<!-- App -->
<script src="SimulatedSkybox.js?v=39"></script>
<script src="main.js?v=39"></script>
</body>
</html>