-
Notifications
You must be signed in to change notification settings - Fork 1
1: Basics
wasdeilonn edited this page Jan 5, 2026
·
1 revision
Before you can use the vast amount of premade abilities, or the gld tools, you must list Polibrary as a dependency in your manifest.json file. (More info in polymod wiki)
If you are coming from Modularity, you should set the minimum version to 2.0, otherwise people that have earlier versions may experience crashes with your mod installed
Example of a manifest.json that has Polibrary 2.0 set as a dependency:
{
"id": "yourverycoolmod",
"name": "my very cool mod that I've made",
"version": "6.9",
"authors": [
"FbiBuster343", "Flowey Undertale"
],
"dependencies": [
{
"id": "polytopia",
"min": "2.10.0"
},
{
"id": "polibrary",
"min": "2.0"
}
]
}Hi there