Firstborn/Assets/RPG Creation Kit/Scripts/Save System/SaveElements/FaceBlendshapesSaveData.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

26 lines
591 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
namespace RPGCreationKit.SaveSystem
{
[Serializable]
public class FaceBlendshapeSaveData
{
public int index;
public float weight;
public FaceBlendshapeSaveData(int index, float weight)
{
this.index = index;
this.weight = weight;
}
}
[Serializable]
public class FaceBlendshapesSaveData
{
[SerializeField] public List<FaceBlendshapeSaveData> allShapes = new List<FaceBlendshapeSaveData>();
}
}