You are viewing a potentially older version of this package.
View all versions.
ThunderstoreAPI
Get loaded mods from r2mm/Thunderstore's mods.yml
Date uploaded | 5 months ago |
Version | 1.0.1 |
Download link | sc07-ThunderstoreAPI-1.0.1.zip |
Downloads | 22395 |
Dependency string | sc07-ThunderstoreAPI-1.0.1 |
This mod requires the following mods to function
BepInEx-BepInExPack
BepInEx pack for Mono Unity games. Preconfigured and ready to use.
Preferred version: 5.4.2100README
ThunderstoreAPI
A simple library to read r2mm's/Thunderstore's mods.yml from the profile folder
Developer Usage
- Add this mod as a dependency to your mod
- Make sure to add ThunderstoreAPI.dll to your project references
ThunderstoreAPI.Library.GetLoadedMods()
Returns List<ThunderstoreMod>
containing all of the loaded/enabled mods
ThunderstoreAPI.Library.GetMods()
Returns List<ThunderstoreMod>
containing all of the mods in profile (not recommended)
class ThunderstoreMod
Property | Type | Description |
---|---|---|
manifestVersion | int | |
name | string | Thunderstore Mod ID (sc07-ThunderstoreAPI ) |
authorName | string | Thunderstore team name (sc07 ) |
websiteUrl | string | Thunderstore mod page |
displayName | string | Mod display name |
description | string | Mod description |
gameVersion | string | |
networkMode | string | |
packageType | string | |
installMode | string | |
loaders | object[] | |
dependencies | string[] | Thunderstore mod ID list, including version |
optionalDependencies | string[] | ^^ |
incompatibilities | string[] | ^^ |
versionNumber | Version | Mod version |
enabled | bool | |
icon | string | Path to icon |
class ThunderstoreMod.Version
Property | Type |
---|---|
major | int |
minor | int |
patch | int |
CHANGELOG
1.0.1
Add missing vanilla compatible declaration
1.0.0
Initial version