This commit is contained in:
2026-05-13 23:02:02 +07:00
parent 5025383676
commit 93da00c206
885 changed files with 980996 additions and 1987 deletions

View File

@@ -0,0 +1,24 @@
using DA_Assets.DAI;
using System;
using System.IO;
using UnityEngine;
namespace DA_Assets.FCU.Model
{
[Serializable]
public class PrefabSettings : MonoBehaviourLinkerRuntime<FigmaConverterUnity>
{
[SerializeField] string prefabsPath = Path.Combine("Assets", "Prefabs");
public string PrefabsPath { get => prefabsPath; set => SetValue(ref prefabsPath, value); }
[SerializeField] TextPrefabNameType textPrefabNameType = TextPrefabNameType.HumanizedColorString;
public TextPrefabNameType TextPrefabNameType { get => textPrefabNameType; set => SetValue(ref textPrefabNameType, value); }
}
public enum TextPrefabNameType
{
HumanizedColorString,
HumanizedColorHEX,
Figma,
}
}