This is a prototype game engine, focussed on abstracting away all rendering logic and focussing purely on the game logic.

Example

```rust use cgmath::{Matrix4, Point3, Rad, Vector3}; use crystal_engine::{GameState, ModelHandle, Window};

fn main() { // Create a new instance of your game and run it let window = Window::::new(800., 600.); window.run(); }

pub struct Game { // Your game state is stored here model: ModelHandle, }

impl crystalengine::Game for Game { fn init(state: &mut GameState) -> Self { // Load an object. This will automatically be rendered every frame // as long as the returned ModelHandle is not dropped. let model = state.createmodelfromobj("assets/some_object.obj");

    // You can move the model around by calling `.modify`
    model.modify(|data| {
        data.position.y = -3.0;
        data.scale = 0.3;
    });

    // Update the camera by manipulating the state's field
    state.camera = Matrix4::look_at(
        Point3::new(0.3, 0.3, 1.0),
        Point3::new(0.0, 0.0, 0.0),
        Vector3::new(0.0, -1.0, 0.0),
    );

    Self { model }
}

fn update(&mut self, _state: &mut GameState) {
    // This will make our model spin
    self.model.modify(|data| {
        data.rotation.y += Rad(0.05);
    });
}

} ```

Feedback

Feel free to approach me with any feedback you might have. You can open an issue on this repo, message me on twitter @victorkoenders or on discord @Trangar#5901