Enum Parametrization
Handling for setting the firing index. The generic repeaters use DEFER by default.
Namespace: Danmokou.Core
Assembly: cs.temp.dll.dll
Syntax
public enum Parametrization
Fields
Name | Description |
---|---|
ADDITIVE | Combine the indexing. Use p1 (parent) p2 (this) in FXY functions. |
DEFER | Use the parent function's indexing. |
INVMOD | Combine the indexing around the repeat number of the child function. The ordering is inverted, so the first summon has local index RPT-1 and the last has local index 0. If the local index of the child function goes past the repeat number, it will wrap back to RPT-1. Use p1m {RPT} p2m {RPT} in FXY functions. |
MOD | Combine the indexing around the repeat number of the child function. If the local index of the child function goes past the repeat number, it will wrap back to zero. Use p1m {RPT} p2m {RPT} in FXY functions. |
THIS | Use this function's indexing. |