/awesome-quads

▦□▫ A curated list of links to miniquad/macroquad-related code & resources

Awesome Quads

A curated list of links to miniquad/macroquad-related code & resources.

Game engines

  • miniquad - main crate, engines below build on top of it. Supports WASM. Therefore everything build on top of it supports WASM too.
  • macroquad - simple to use library from author of miniquad.
  • good-web-game - crate to easily port your ggez to WASM. You shouldn't use this crate when you creating new project.
  • emerald - game engine with physics, audio, graphics, ECS.
  • nonaquad - vector anti-aliased graphics renderer.

Games

On top of macroquad

  • Rusty Demon Attack - game inspired by the classic atari game: demon attack.
  • Zemeroth - turn-based hexagonal tactical game.
  • Fish Game - online multiplayer game, created as a demonstration of Nakama, an open-source scalable game server.
  • Vollmond - small non violent adventure in the style of Zelda 2.
  • rymd - space shooter game prototype.
  • Scream mr. Jack - ???.
  • Power Kick - platformer fighting game.
  • Soldank - a remake of Soldat game, made using macroquad and laminar
  • The Submariner - a minimalist action game made for the LD48 Compo.

On top of miniquad

  • Fermi Paradox - arcanoid-like game with moving enemies in space.
  • Crate Before Attack - worms-like multiplayer game where frogs combat their friends while navigating a landscape with their sticky tongue. It is a hybrid of a realtime and turn-based game.

On top of good-web-game

Apps or visualizations

On top of macroquad

Docs

Publications

Example usage

Libraries

Integrations

Plugins

Plugin has additional .js file, so to use it, you need to do extra work. Before deploying of your project on WASM, you could look at your dependencies using cargo tree and if you find these crates, add .js file from them.

  • sapp-jsutils - to build plugins. If you want to send/receive string or arbitrary object to JS, you should look at this.
  • quad-snd - to play sound.
  • quad-net - to use network.
  • quad-url - to change current url, search parameters, and open links.

Other