This shows you the differences between two versions of the page.
| wiki:plugin:get_started [2022/09/12 11:39] – created shedaniel | wiki:plugin:get_started [2022/09/16 13:57] (current) – Deleted shedaniel | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Get Started With Architectury ====== | ||
| - | To get started, download templates from [[https:// | ||
| - | |||
| - | You will want to **change every reference** of examplemod to your mod, this includes '' | ||
| - | |||
| - | ==== I don't want Architectury API... ==== | ||
| - | |||
| - | Remove lines related to Architectury API in each of the '' | ||
| - | |||
| - | <code diff> | ||
| - | dependencies { | ||
| - | // We depend on fabric loader here to use the fabric @Environment annotations and get the mixin dependencies | ||
| - | // Do NOT use other classes from fabric loader | ||
| - |     modImplementation " | ||
| - | // Remove the next line if you don't want to depend on the API | ||
| - | -    | ||
| - | } | ||
| - | </ | ||
| - | |||
| - | ==== I want Yarn instead... ==== | ||
| - | |||
| - | Replace the line for the default Mojang Mappings in the root '' | ||
| - | |||
| - | <code diff> | ||
| - | subprojects { | ||
| - |     apply plugin: " | ||
| - | |||
| - | loom { | ||
| - | silentMojangMappingsLicense() | ||
| - | } | ||
| - | |||
| - | dependencies { | ||
| - |         minecraft " | ||
| - | - // The following line declares the mojmap mappings, you may use other mappings as well | ||
| - | -        | ||
| - | // The following line declares the yarn mappings you may select this one as well. | ||
| - | -       // mappings " | ||
| - | +        | ||
| - | } | ||
| - | } | ||
| - | </ | ||