Hardware accelerated 2D library, used by the first year students of AIV ("Accademia Italiana Videogiochi")
It is the base for aiv-fast3d too, that adds support for 2.5d and 3d games.
Examples
Below a very basic usage example.
More examples are available in Example project.
Window window = new Window(1024, 576, "Title");
Window window = new Window(1920, 1080, "Title", true);
Window window = new Window("Title");
Texture texture = new Texture("path_to_image_file");
Sprite sprite = new Sprite(100, 100);
sprite.position =
new Vector2(x, y);
sprite.EulerRotation = 90;
sprite.scale =
new Vector2(0.5f, 0.5f);
sprite.DrawTexture(texture);
sprite.DrawTexture(texture, xOffset, yOffset, width, height);
Documentation
API documentation related to the last version of the library is published here.
Futhermore some in-depth guides are available for the following topics:
- ./docs/Joysticks.md "Handling Joystick input".
- ./docs/Postprocessing.md "Creating Post-Processing effects".
Compliance
Library tested on:
- Visual Studio 2019 v16.6.4
- .NET Framework 4.8
- Any Cpu architecture
Contribution
If you want to contribute to the project, please follow the guidelines.