Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/Monster/MonsterBase.Debug.cs
Mingu Kim a27bb7d6d1 몬스터 스포너 테스트코드 구현
1. 몬스터 상태 Hit, Death 추가
2. 몬스터 스킬 정리
2025-02-20 05:21:58 +09:00

23 lines
409 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public partial class MonsterBase
{
private void OnGUI()
{
if (GUILayout.Button("Hit"))
{
ApplyDamage(1);
}
if (GUILayout.Button("Dead"))
{
ApplyDamage(1000000000);
}
}
}
}