Started by
SparkleArts
on
Topic category: Help with MCreator software
I wanna know if it possible to create an API inside of MCreator.
I have an Idea for an API but I wanna use MCreator.
Topic category: Help with MCreator software
I wanna know if it possible to create an API inside of MCreator.
I have an Idea for an API but I wanna use MCreator.
I think its possible, I remember there being a dependency thing in the workspace settings
Yep its possible. Heres an example from my twilight forest api plugin:
---
forge-1.19.2:
gradle: |
repositories {
maven {
url = 'https://cursemaven.com'
}
}
dependencies {
implementation fg.deobf('curse.maven:the-twilight-forest-227639:4389567')
}
update_files:
- ~
forge-1.19.4:
gradle: |
repositories {
maven {
url = 'https://cursemaven.com'
}
}
dependencies {
implementation fg.deobf('curse.maven:the-twilight-forest-227639:4539671')
}
update_files:
- ~
name: "Twilight Forest"
---
File location: PluginName/apis/api_name.yaml
I'm not talking about making an Plugin that adds an API.
I wanna create a Mod that is an API/Library and I wanna make it possible to others that there can add my Mod later to their Dev Environment.
One can always add other mods by adding them eg. to the gradle file
Creating an API directly inside MCreator is not possible yet
Hey, I need help trying to create an API. I followed the instructions on Mcreator website, but I don't know where the "apis" folder is supposed to go. Can You Help Please?
the "apis" folder goes as follows:
ROOT > apis > .yaml file (api files)
Thanks