Add PenumbraAPI & GlamourerAPI + Update API & Connector

This commit is contained in:
2025-08-31 18:19:04 +02:00
parent bc6cde48de
commit 6101686a33
143 changed files with 15731 additions and 1337 deletions

View File

@@ -0,0 +1,39 @@
namespace Penumbra.Api.Enums;
/// <summary>
/// The selection type for mod option groups.
/// </summary>
public enum GroupType
{
/// <summary>
/// Exactly one option of this group has to be selected (if any exist).
/// </summary>
Single,
/// <summary>
/// Any number of options in this group can be toggled on or off at the same time.
/// Limits the number of options in a single group to 32 at the most.
/// Each option is its own data container, which are independent of each other.
/// </summary>
Multi,
/// <summary>
/// Any number of options in this group can be toggled on or off at the same time.
/// Affects a single IMC entry, to manipulate different parts of a model in a user-facing way.
/// </summary>
Imc,
/// <summary>
/// Any number of options in this group can be toggled on or off at the same time.
/// Limits the number of options in a single group to 8 at the most.
/// Each combination of options is its own data container, resulting in 2^N separate data containers.
/// </summary>
Combining,
/// <summary>
/// A group consisting of multiple separate subgroups where the options can depend on each other.
/// Each subgroup behaves the same way as its regular group type, just with optional dependencies on the other options.
/// The total number of options is still limited by the settings bit size.
/// </summary>
Complex,
}