씬 정리
This commit is contained in:
8
Assets/Scripts/Unicorn/Boss.meta
Normal file
8
Assets/Scripts/Unicorn/Boss.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dfcbc90cc7a0c014e81c445f114b9772
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,3 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a876daf45e834b59879bf88d11a77ebe
|
||||
timeCreated: 1777908804
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Unicorn.Game.Player
|
||||
{
|
||||
public class Player: LivingEntity
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -12,5 +12,5 @@ MonoBehaviour:
|
||||
m_Script: {fileID: 11500000, guid: 4de4d4a74d5b4258863a8173560a93ab, type: 3}
|
||||
m_Name: ExampleAD
|
||||
m_EditorClassIdentifier: Assembly-CSharp::Unicorn.Game.Hitbox.UnicornAttackDataSO
|
||||
damage: 5
|
||||
damage: 3
|
||||
knockbackForce: 15
|
||||
18
Assets/Scripts/Unicorn/Player/Player.cs
Normal file
18
Assets/Scripts/Unicorn/Player/Player.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Unicorn.Game.Hitbox;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Unicorn.Game.Player
|
||||
{
|
||||
public class Player: LivingEntity
|
||||
{
|
||||
protected override void OnDamaged(DamageInfo info)
|
||||
{
|
||||
Debug.Log(health);
|
||||
}
|
||||
|
||||
protected override void OnDeath()
|
||||
{
|
||||
Debug.Log("주것서영.");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user