Commit 5ebd52e
Fix floating containers with Infinity bounds not rendering (#1356)
* Fix floating containers with Infinity bounds not rendering (HUD missing)
After the Container refactor defaulting dimensions to Infinity,
floating containers (like the HUD UIContainer) had empty bounds
(min=Infinity, max=-Infinity). camera.isVisible() checked
bounds.left <= camera.width, which is Infinity <= 800 = false,
so the container was never updated and its children never rendered.
Fix: treat floating objects with non-finite bounds as always visible.
Also adjust platformer score position for the new baseline alignment.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Address review: narrow cleared-bounds check, add test coverage
- Check for exact cleared bounds sentinel (min=Infinity, max=-Infinity)
instead of generic !isFinite() to avoid masking NaN bugs
- Add tests for floating objects with cleared bounds visibility
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 6db3d9b commit 5ebd52e
File tree
3 files changed
+33
-1
lines changed- packages
- examples/src/examples/platformer/entities
- melonjs
- src/camera
- tests
3 files changed
+33
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
167 | 167 | | |
168 | 168 | | |
169 | 169 | | |
170 | | - | |
| 170 | + | |
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
779 | 779 | | |
780 | 780 | | |
781 | 781 | | |
| 782 | + | |
| 783 | + | |
| 784 | + | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
782 | 791 | | |
783 | 792 | | |
784 | 793 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
232 | 255 | | |
233 | 256 | | |
234 | 257 | | |
| |||
0 commit comments