#rendering-engine #amethyst #renderer #3d #game-engine #game

amethyst_renderer

High-level rendering engine with multiple backends

17 releases (8 breaking)

0.10.4 Jan 10, 2019
0.10.2 Dec 26, 2018
0.9.0 Oct 23, 2018
0.7.0 May 19, 2018
0.3.0 Mar 31, 2016

#48 in #amethyst

Download history 133/week @ 2023-11-27 105/week @ 2023-12-04 136/week @ 2023-12-11 174/week @ 2023-12-18 100/week @ 2023-12-25 60/week @ 2024-01-01 157/week @ 2024-01-08 129/week @ 2024-01-15 118/week @ 2024-01-22 75/week @ 2024-01-29 117/week @ 2024-02-05 130/week @ 2024-02-12 246/week @ 2024-02-19 226/week @ 2024-02-26 232/week @ 2024-03-04 300/week @ 2024-03-11

1,023 downloads per month
Used in 7 crates (2 directly)

MIT/Apache

575KB
13K SLoC

Amethyst - Rendering Engine

Build Status Crates.io MIT/Apache Join us on Discord

High-level rendering engine with multiple backends. This project is a work in progress and is very incomplete. Pardon the dust!


lib.rs:

A data parallel rendering engine developed by the Amethyst project.

The source code is available for download on GitHub. See the online book for a complete guide to using Amethyst.

Background

This crate provides OpenGL graphics rendering functionality through various rendering passes. The rendering passes may handle different domains of rendering, such as "draw game objects" vs "render text"; or they can handle the same domain with different variations, such as "draw objects with lighting" vs "draw objects ignoring lighting".

Skinning: Interleaved Versus Separate Passes

In an application, objects may be composed of multiple renderable entities, such as a main body and separate limbs. Where the limbs join the the body, it will look more realistic if the vertex positions are affected by the relative positions to the body and limb.

This is where, for a DrawX pass, you will find a corresponding DrawXSeparate pass which supports vertex skinning and joint transformations to improve the render. An exception to this is the DrawFlat2D pass, which does not support joint transformations.

Dependencies

~24–37MB
~437K SLoC