-
Bevy/Windows development noob here. I'm interested in creating something akin to Wallpaper Engine and would love to use Bevy as a renderer. I already have a handle to a window using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
This should be possible. I don't think it is possible to keep using winit for window handling if create the window handle yourself. Bevy is modular though, so you can disable bevy_winit and write your own window handling code. I'm not quite sure how to make bevy_render detect your window. You can look at the place bevy_winit is used within bevy_render and do something similar I think. |
Beta Was this translation helpful? Give feedback.
This should be possible. I don't think it is possible to keep using winit for window handling if create the window handle yourself. Bevy is modular though, so you can disable bevy_winit and write your own window handling code. I'm not quite sure how to make bevy_render detect your window. You can look at the place bevy_winit is used within bevy_render and do something similar I think.