mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
Don't send AAS while switching avatar. This should mean I am less likely to load into the wrong states while switching if others load me faster. This does mean though that it is more likely that remote users will apply null buffers forcing all 0/false instead of garbage aas, but its at least kind of a mitigation. There is a possibility syncing garbage data is better than syncing nothing at all, as that does give the chance to apply settings that don't immediatly load in naked. This just requires testing...
12 lines
No EOL
242 B
C#
12 lines
No EOL
242 B
C#
using MelonLoader;
|
|
|
|
namespace NAK.Melons.AASBufferFix;
|
|
|
|
public class AASBufferFix : MelonMod
|
|
{
|
|
///public static MelonLogger.Instance Logger;
|
|
public override void OnInitializeMelon()
|
|
{
|
|
///Logger = LoggerInstance;
|
|
}
|
|
} |