#monogame #animation #library #csharp #gamedev #plugin #framework #xna

Nikos Kastellanos 82fc0b1d39 merge Animation project vor 10 Monaten
.github a4e3198b37 update FUNDING.yml vor 1 Jahr
Animation 82fc0b1d39 merge Animation project vor 10 Monaten
Atlas 7e4bbc834b merge Atlas project vor 10 Monaten
Content.Pipeline 14d30be268 merge pipeline projects vor 10 Monaten
Graphics 0aea522eda merge Graphics project vor 10 Monaten
Native.Animation 3ba9fa94ec rename namespace vor 3 Jahren
Samples 82fc0b1d39 merge Animation project vor 10 Monaten
Shaders 1cf6369500 merge shader projects vor 10 Monaten
Tilemap 99d5b359d8 merge Tilemap project vor 10 Monaten
.gitignore 79985cb5b9 gitignore vor 1 Jahr
Aether.Extras.NET4.XNA.sln b6b632660c rename project files vor 3 Jahren
Aether.Extras.NET4.sln 82fc0b1d39 merge Animation project vor 10 Monaten
Aether.Extras.NETSTANDARD.sln 82fc0b1d39 merge Animation project vor 10 Monaten
Aether.Extras.UAP.sln 597094b94a update UAP project files vor 2 Jahren
LICENSE e038b7c1e0 First commit vor 9 Jahren
README.md 2d7563d24a add links to readme vor 3 Jahren
Samples.DESKTOPGL.NET8.sln 82fc0b1d39 merge Animation project vor 10 Monaten
Samples.WINDOWS.NET8.sln 82fc0b1d39 merge Animation project vor 10 Monaten
Samples.WINDOWS.sln 82fc0b1d39 merge Animation project vor 10 Monaten
Samples.XNA.sln 44094ba15d move samples vor 1 Jahr

README.md

Aether.Extras

Content Importers and Shaders for MonoGame and Kni framework.

Content Importers

  • 'Animation' - Import animations from a Model.
  • 'GPU AnimatedModel' - Import an animated Model.
  • 'CPU AnimatedModel' - Import an animated Model to be animated by the CPU. Based on DynamicModelProcessor, the imported asset is of type Microsoft.Xna.Framework.Graphics.Model where the VertexBuffer is replaced by a CpuAnimatedVertexBuffer. CpuAnimatedVertexBuffer inherits from DynamicVertexBuffer.
  • 'DDS Importer' - Import of DDS files (images, Cubemaps). Supports importing of DDS with DTX format.
  • 'RawModelProcessor' - Import 3D Models with a raw copy of Vertex/Index data for platforms that don't support GetData().
  • 'DynamicModel' - Base Processor to customize the build in Model. It allows to modify VertexBuffer & IndexBuffers, make them Dynamic and WriteOnly.
  • 'VoxelModelImporter' - Import .vox files as 3D Models.
  • 'AtlasImporter' - Import sprite atlas. Supports .tmx files. Mipmaps are generated individually for each sprite, no color-leak.
  • 'TilemapImporter' - Import tilemap files. Supports .tmx files.

nkast.Aether.Animation

Play animated 3D models and support for CPU animation. CPU animation is optimized using unsafe code, writing directly to mapped VertexBuffer memory using reflection (DirectX).

nkast.Aether.Graphics

Draw Atlas sprites from TextureAtlas. Draw Tilemaps.

nkast.Aether.Shaders

  • 'FXAA' - MonoGame port of NVIDIA's FXAA 3.11 shader.
  • 'Deferred' - Deferred rendering.
  • 'InfiniteGrid' - Draws an Infinite Grid.
  • 'Tilemap' - Draws a Tilemap texture.