inox2d icon indicating copy to clipboard operation
inox2d copied to clipboard

Bevy Integration

Open togetherwithasteria opened this issue 1 year ago • 2 comments

We will need to have our code compatible with Bevy's ECS API. Then we can easily implement it in a separate crate.

Implementation Overview

Bevy uses an Entity Component System (ECS) system.

For its windowing events, Bevy doesn't pass the events from Winit, but send its own event data listed in bevy::window using Bevy ECS.

For the rendering part, bevy provides an API trough the Renderer Sub-App.

togetherwithasteria avatar Dec 21 '22 10:12 togetherwithasteria