57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Encodings.Web;
|
|
using System.Text.Json;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Media;
|
|
|
|
namespace SpineViewer.Models
|
|
{
|
|
public class WorkspaceModel
|
|
{
|
|
public RendererWorkspaceConfigModel RendererConfig { get; set; } = new();
|
|
public List<SpineObjectWorkspaceConfigModel> LoadedSpineObjects { get; set; } = [];
|
|
}
|
|
|
|
public class RendererWorkspaceConfigModel
|
|
{
|
|
public uint ResolutionX { get; set; } = 100;
|
|
|
|
public uint ResolutionY { get; set; } = 100;
|
|
|
|
public float CenterX { get; set; }
|
|
|
|
public float CenterY { get; set; }
|
|
|
|
public float Zoom { get; set; } = 1f;
|
|
|
|
public float Rotation { get; set; }
|
|
|
|
public bool FlipX { get; set; }
|
|
|
|
public bool FlipY { get; set; } = true;
|
|
|
|
public float Speed { get; set; } = 1f;
|
|
|
|
public bool ShowAxis { get; set; } = true;
|
|
|
|
public Color BackgroundColor { get; set; }
|
|
|
|
public string BackgroundImagePath { get; set; }
|
|
|
|
public Stretch BackgroundImageMode { get; set; } = Stretch.Uniform;
|
|
}
|
|
|
|
public class SpineObjectWorkspaceConfigModel
|
|
{
|
|
public string SkelPath { get; set; } = "";
|
|
public string AtlasPath { get; set; } = "";
|
|
public bool IsShown { get; set; } = true;
|
|
public SpineObjectConfigModel ObjectConfig { get; set; } = new();
|
|
}
|
|
|
|
}
|