logo of the comfy engine Comfy

Comfy

Comfy is a fun 2D game engine built in Rust. It's designed to be opinionated, productive, and easy to use. It uses wgpu. Inspired by macroquad, raylib, Love2D and many others, it is designed to just work and fill most of the common use cases.

Example usage

  use comfy::*;

  simple_game!("Nice red circle", update);

  fn update(_c: &mut EngineContext) {
      draw_circle(vec2(0.0, 0.0), 0.5, RED, 0);
  }