您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
606 B
22 行
606 B
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.Multiplayer.Samples.BossRoom
|
|
{
|
|
/// <summary>
|
|
/// This ScriptableObject defines a Player Character for BossRoom. It defines its CharacterClass field for
|
|
/// associated game-specific properties, as well as its graphics representation.
|
|
/// </summary>
|
|
[CreateAssetMenu]
|
|
[Serializable]
|
|
public class Avatar : GuidScriptableObject
|
|
{
|
|
public CharacterClass CharacterClass;
|
|
|
|
public GameObject Graphics;
|
|
|
|
public GameObject GraphicsCharacterSelect;
|
|
|
|
public Sprite Portrait;
|
|
}
|
|
}
|