v2/v3 clipboard support

This commit is contained in:
RisaDev
2024-02-04 22:26:40 +03:00
parent 74fd503272
commit 695375d93c
6 changed files with 139 additions and 24 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Numerics;
namespace CustomizePlus.Configuration.Data.Version2;
[Serializable]
public struct V2BoneEditsContainer
{
public Vector3 Position { get; set; } = Vector3.Zero;
public Vector3 Rotation { get; set; } = Vector3.Zero;
public Vector3 Scale { get; set; } = Vector3.One;
public V2BoneEditsContainer()
{
}
}

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
namespace CustomizePlus.Configuration.Data.Version2;
[Serializable]
public class Version2Profile
{
public static Dictionary<string, bool> BoneVisibility = new();
public string CharacterName { get; set; } = string.Empty;
public string ScaleName { get; set; } = string.Empty;
public bool BodyScaleEnabled { get; set; } = true;
public Dictionary<string, V2BoneEditsContainer> Bones { get; set; } = new();
}