Net.Like.Xue.Tokyo/Assets/Artists/Scripts/ScriptableYangdunData.cs

26 lines
960 B
C#

using System.Collections;
using System.Collections.Generic;
using AYellowpaper.SerializedCollections;
using UnityEngine;
namespace Net.Like.Xue.Tokyo
{
public class ScriptableYangdunData : ScriptableObject
{
[SerializeField] private AnimationClip boostAnimation;
[SerializeField] private ParticleSystem groundVfx;
[SerializeField] private SerializedDictionary<HumanBodyBones, ParticleSystem[]> boneVfx;
[SerializeField] private SerializedDictionary<HumanBodyBones, ParticleSystem[]> followVfx;
[SerializeField] private Sprite[] nfcSprites;
public AnimationClip BoostAnimation => boostAnimation;
public ParticleSystem GroundVfx => groundVfx;
public IReadOnlyDictionary<HumanBodyBones,ParticleSystem[]> BoneVfx => boneVfx;
public IReadOnlyDictionary<HumanBodyBones,ParticleSystem[]> FollowVfx => followVfx;
public Sprite[] NfcSprites => nfcSprites;
}
}