Replies: 1 comment
-
I found an issue signal my problem #19203 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a main camera and a secondary camera for overlays (like the minimap). But as soon as I attach an
AmbientLight
to the secondary camera, a warning appears in logs.The following message appear:
The entity here is not an entity I created myself. It seems to be created after my main camera and before my secondary camera.
If I don't attach an
AmbientLight
component to my secondary camera, the warning goes away.I tried inspecting that mysterious entity with
world.inspect_entity(...)
, but I didn't see anything interesting.What is going on here?
I also tried to insert
AmbientLight
after, because it requiresCamera
. But it didn't change anything.This is the minimal code to reproduce the error.
Beta Was this translation helpful? Give feedback.
All reactions