-
Hi, this is my first time posting so tell me if I do anything wrong. I want to make a 3D tile map using tiles with meshes and I want to have it as a single entity.
I don't really have any idea on how to fix it so any information helps! Spawning code:
Rendering code:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
From the code it seems that you copied the example for version If the latest example still fails for you, you could open an issue. |
Beta Was this translation helpful? Give feedback.
Could you double-check that your Bevy version matches the version of the example code you are copying? You already saw that the example that runs locally for you is for
0.14.0-dev
, but your project is likely using0.13.2
(you can check that by searching forbevy
in yourCargo.lock
). Once you verified what version you are using in your project, checkout that version in your local copy of Bevy (e.g.git checkout release-0.13.2
). Now you canIf the issues persist, you could follow the GitHub documentation I linked further above to open an issue in …