Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Character Aspect Customization System/characterCustomizationInfo.cs
Robii Aragon fd87a6ffd5 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

36 lines
675 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class characterCustomizationInfo
{
public string Name;
public string typeName;
public string categoryName;
public int ID;
[Space]
public float floatValue;
public bool useRandomFloatValue;
[Space]
public bool boolValue;
public bool useRandomBoolValue;
public bool useRandomObjectFromCategoryName;
[Space]
public bool multipleElements;
}
[System.Serializable]
public class characterCustomizationTypeInfo
{
public string Name;
public List<characterCustomizationInfo> characterCustomizationInfoList = new List<characterCustomizationInfo> ();
}