Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Save System/Persistance Classes/persistanceBlendshapesListBySaveSlotInfo.cs
Robii Aragon 779f2c8b20 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

33 lines
727 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class persistanceBlendshapesListBySaveSlotInfo
{
public int saveNumber;
public List<persistancePlayerBlendshapesInfo> playerBlendshapesList = new List<persistancePlayerBlendshapesInfo> ();
}
[System.Serializable]
public class persistancePlayerBlendshapesInfo
{
public int playerID;
public List<string> accessoriesList = new List<string> ();
public List<persistanceBlendshapesInfo> blendshapesList = new List<persistanceBlendshapesInfo> ();
}
[System.Serializable]
public class persistanceBlendshapesInfo
{
public string Name;
public float blendShapeValue;
public persistanceBlendshapesInfo ()
{
}
}