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

Nikos Kastellanos 6e3e802dcb Merge pull request #3 from nkast/nkast-patc před 2 měsíci
.github a4e3198b37 update FUNDING.yml před 10 měsíci
Animation 9b51f6f06e v1.5.0.0 před 4 měsíci
Atlas 9b51f6f06e v1.5.0.0 před 4 měsíci
Content.Pipeline 9b51f6f06e v1.5.0.0 před 4 měsíci
Graphics 9b51f6f06e v1.5.0.0 před 4 měsíci
Native.Animation 3ba9fa94ec rename namespace před 2 roky
Samples 9b51f6f06e v1.5.0.0 před 4 měsíci
Shaders 9b51f6f06e v1.5.0.0 před 4 měsíci
Tilemap 9b51f6f06e v1.5.0.0 před 4 měsíci
.gitignore 79985cb5b9 gitignore před 1 rokem
Aether.Extras.NET4.XNA.sln b6b632660c rename project files před 2 roky
Aether.Extras.sln 10e9514c3e merge Aether.Extras. sln před 5 měsíci
LICENSE e038b7c1e0 First commit před 8 roky
Package.props 5111337f79 pack libraries před 5 měsíci
README.md f6fe32a358 Update README.md před 2 měsíci
Samples.DESKTOPGL.NET8.sln 82fc0b1d39 merge Animation project před 5 měsíci
Samples.WINDOWS.NET8.sln 82fc0b1d39 merge Animation project před 5 měsíci
Samples.WINDOWS.sln 82fc0b1d39 merge Animation project před 5 měsíci
Samples.XNA.sln 44094ba15d move samples před 11 měsíci
pack.bat 5111337f79 pack libraries před 5 měsíci

README.md

Aether.Extras

Content Importers and Shaders for Kni framework.

note: For the MonoGame libraries, download the .zip files from release v1.1 or v1.0.

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. Mipmaps are generated individually for each sprite, no color-leak.

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).