@babylonjs/lite-compat 1.5.0-preview → 1.6.0-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/index.d.ts +711 -0
- package/index.js +1171 -4
- package/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -97,7 +97,7 @@ mismapping. Once migration is complete you can drop the plugin and import from
|
|
|
97
97
|
module-level side effects, so it never bloats consumers that don't use it.
|
|
98
98
|
- **Honest:** unsupported Babylon.js APIs throw `LiteCompatError` rather than
|
|
99
99
|
rendering something subtly wrong.
|
|
100
|
-
- **Not** a full Babylon.js reimplementation. Particles, GUI, WebXR,
|
|
100
|
+
- **Not** a full Babylon.js reimplementation. Particles, GUI, WebXR, decals,
|
|
101
101
|
and other features absent from Babylon Lite are out of scope.
|
|
102
102
|
|
|
103
103
|
## Supported APIs at a glance
|
|
@@ -132,7 +132,8 @@ overloads within a supported area may still be absent.
|
|
|
132
132
|
| Sprites (`SpriteManager` / `Sprite`) | ⚡ | camera-facing billboards; `SpriteMap` / packed atlas unsupported |
|
|
133
133
|
| Behaviors / Actions (`AutoRotation`, `Framing`, `ActionManager`, conditions) | ⚡ | `ActionManager` is manual-dispatch; drag behaviors need Lite core |
|
|
134
134
|
| Misc (`Observable`, `Tools`, `SmartArray`, `Tags`, gradients, `PerformanceMonitor`) | ✅ | |
|
|
135
|
-
|
|
|
135
|
+
| Audio V2 (`AudioEngineV2`, `StaticSound`, `StreamingSound`, `AudioBus`, buses/sources/analyzer) | ⚡ | over Lite's AudioV2 port; `MainAudioBus` spatial/analyzer and a second main bus unsupported |
|
|
136
|
+
| Particles, post-processes, layers (glow/highlight), probes, physics, WebXR | ❌ | not in Babylon Lite — use native Lite `create*Task` / Havok-V2 functions |
|
|
136
137
|
|
|
137
138
|
### `@babylonjs/loaders`
|
|
138
139
|
|