1.enum 변수들 NONE = 0 -> NONE = -1 변경 2.meleeWeapon -> closeWeapon 이름 변경 3.BaseCharacter(기본캐릭터) 조립형 프리팹 수정
12 lines
374 B
C#
12 lines
374 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWaterProject
|
|
{
|
|
[CreateAssetMenu(fileName = "AiStatDataSo", menuName = "ScriptableObjects/AiStatData", order = 1)]
|
|
public class AiStatDataSo : ScriptableObject
|
|
{
|
|
public List<AiStat> aiStatDataList = new(GlobalValue.AI_STAT_DATA_CAPACITY);
|
|
}
|
|
} |