-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use 2d camera instead of 3d one #4
Comments
Will 2d has better performance? |
It may not perform better, but it makes more sense, and (hopefully) is simpler to work with. |
I just tried modify the camera to iso view when I known it's 3d camera. Image can have different coordinates and it looks interesting . |
for me, 3d is more familiar, :) |
change to use ortho camera, the distortion should be fixed now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not sure why this crate uses 3d camera, the content is all 2d. Camera 2d has
OrthographicProjection
component which hasscale
, it is what you want instead of adjustingz
coordinate (unless you actually want images to float in 3d space)useful: bevyengine/bevy#2580
P.S. beware of this issue: bevyengine/bevy#239
The text was updated successfully, but these errors were encountered: