38 lines
698 B
C#
38 lines
698 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class CharacterAttribute : MonoBehaviour
|
|
{
|
|
[Header("需要显示的")]
|
|
public int hp;//血量
|
|
public int defend;//抗火
|
|
|
|
[Header("内部数据")]
|
|
public int ID;
|
|
public string Note;
|
|
public string Name;
|
|
public string PlayScript;
|
|
public string ResPath;
|
|
public string State1;
|
|
public string StateRes1;
|
|
public string State2;
|
|
public string StateRes2;
|
|
public string Stats1;
|
|
public string Stats2;
|
|
|
|
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|