Stop the browser asset meta probe 404 noise #81
Labels
No labels
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
c#
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
role/ai
role/creator
role/design
role/director
role/engineer
role/exec
role/human
role/ops
role/qa
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
coilyco-gaming/factory-game-v3#81
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Bevy's
AssetServerdefaults toAssetMetaCheck::Always, so every sprite load first requests a<path>.png.metasidecar. The repo ships no meta files, so each browser session emits ten console 404s before the real images load.The 404s are harmless on their own. The cost is that they are indistinguishable from a genuine asset delivery failure, which is exactly the failure mode #60 just made observable. Console noise that always fires trains the reader to ignore the one time it means something.
Acceptance
.metarequest and no console errors./assets/404 contract from #60 stays intact, so a genuinely missing sprite still fails honestly.