Home - FoundryMC/Veil GitHub Wiki
Overview
All veil resources should be located in the assets/modid/pinwheel
folder. Specific assets are in subfolders of the
main pinwheel folder.
The exception is Quasar particles, which are located in the assets/modid/quasar
folder.
Getting Started
The latest version can be found in the Veil README or directly from Jared's Maven.
Neoforge
repositories {
maven {
name = 'BlameJared Maven (CrT / Bookshelf)'
url = 'https://maven.blamejared.com'
}
}
dependencies {
implementation("foundry.veil:veil-neoforge-${project.minecraft_version}:${project.veil_version}") {
exclude group: "maven.modrinth"
exclude group: "me.fallenbreath"
}
}
Fabric
repositories {
maven {
name = 'BlameJared Maven (CrT / Bookshelf)'
url = 'https://maven.blamejared.com'
}
}
dependencies {
modImplementation("foundry.veil:veil-fabric-${project.minecraft_version}:${project.veil_version}") {
exclude group: "maven.modrinth"
exclude group: "me.fallenbreath"
}
}
Common
repositories {
maven {
name = 'BlameJared Maven (CrT / Bookshelf)'
url = 'https://maven.blamejared.com'
}
}
dependencies {
implementation("foundry.veil:veil-common-${project.minecraft_version}:${project.veil_version}") {
exclude group: "maven.modrinth"
exclude group: "me.fallenbreath"
}
}