check for invalid animations I hate animations ignore broken bones from god knows what fix more idiotic mod things fully ignore garbage skeletons that fail to process properly fix my own mistakes fix more bullshit check for filename length and continue idk some cleanup fix spoopy skellingtons change loglevel of tris
10 lines
466 B
C#
10 lines
466 B
C#
using System.Collections.Concurrent;
|
|
|
|
namespace MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
public class XivDataStorageConfig : IMareConfiguration
|
|
{
|
|
public ConcurrentDictionary<string, long> TriangleDictionary { get; set; } = new(StringComparer.OrdinalIgnoreCase);
|
|
public ConcurrentDictionary<string, Dictionary<string, List<ushort>>> BonesDictionary { get; set; } = new(StringComparer.OrdinalIgnoreCase);
|
|
public int Version { get; set; } = 0;
|
|
} |