ftneko5

Newbie
Mar 7, 2023
58
101
For the love of GOD WHERE IS THE UPDATE, PLEASE SOMEONE WHO IS IN THE PATREON UPLOAD IT TO MEGA OR WHATEVER I'M BEGGING
 
  • Like
Reactions: Akur

ameliegg

New Member
Jul 11, 2023
5
6
using another tuple syntax fixes this
replacing
Code:
    [TupleElementNames(new string[]
    {
        "albedo",
        "detailMask",
        "characterBase"
    })]
    public static readonly Dictionary<string, ValueTuple<P3dPaintSphere, P3dPaintSphere, CharacterBase>> _emitters = new Dictionary<string, ValueTuple<P3dPaintSphere, P3dPaintSphere, CharacterBase>>();

    [TupleElementNames(new string[]
    {
        "albedo",
        "detailMask"
    })]
    public static readonly Dictionary<NPCController, ValueTuple<P3dPaintSphere, P3dPaintSphere>> _FBemitters = new Dictionary<NPCController, ValueTuple<P3dPaintSphere, P3dPaintSphere>>();
with

Code:
public static readonly Dictionary<string, (P3dPaintSphere albedo, P3dPaintSphere detailMask, CharacterBase characterBase)> _emitters = new Dictionary<string, (P3dPaintSphere albedo, P3dPaintSphere detailMask, CharacterBase characterBase)>();

public static readonly Dictionary<NPCController, (P3dPaintSphere albedo, P3dPaintSphere detailMask)> _FBemitters = new Dictionary<NPCController, (P3dPaintSphere albedo, P3dPaintSphere detailMask)>();
seems to work
 
4.40 star(s) 27 Votes