MDMX overflows mergedDMXvalues for MIDIDMX Exporter when maxed out at 16384 to 16386 due to the Column rounding for Serialization.
(Just writing this down for later)
|
int rounded = (int)(Math.Ceiling(channelValues.Count / (double)channelsPerCol) * channelsPerCol); |
|
channelValues.EnsureCapacity(rounded); |
|
for (int i = midiCatchup; i < channelValues.Count; i++) |
MDMX overflows mergedDMXvalues for MIDIDMX Exporter when maxed out at 16384 to 16386 due to the Column rounding for Serialization.
(Just writing this down for later)
HNode/Assets/Plugin/Serializers/SerializerMDMX.cs
Lines 24 to 25 in 9862e30
HNode/Assets/Plugin/Exporters/MIDIDMX.cs
Line 155 in 9862e30