DynamicAssetAccessor
A tool for generating asset and data resources at runtime from existing resources.
DynamicAssetAccessor
This is the RecraftorsMC port of the Dynamic Asset Generator mod for Quilt
![]()
---
Dynamic Asset Generator
%%MD0%%
A library mod for dynamically generate assets, such as textures, at runtime.
---
How to import
To Maven
Step 1. Add the Modrinth repository to your build file ```xml <repositories> <repository> <id>modrinth</id> <url>https://api.modrinth.com/maven</url> </repository> </repositories> ```
Step 2. Add the dependency (adding the version of your needs) ```xml <dependencies> <dependency> <groupId>maven.modrinth</groupId> <artifactId>mcr_dynamicassetgenerator</artifactId> <version>...</version> </dependency> </dependencies> ```
To Gradle
Step 1. Add the Modrinth repository to your build file ```groovy repositories { maven { name "Modrinth" url "https://api.modrinth.com/maven" } } ```
Step 2. Add the dependency (adding the version of your needs) ```groovy dependencies { implementation "maven.modrinth:mcr_dynamicassetgenerator:<version>" } ```