씬 정리

This commit is contained in:
김도환
2026-05-08 22:45:22 +09:00
parent d4cb3c5f39
commit f1213cd247
26 changed files with 120 additions and 255 deletions

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: dfcbc90cc7a0c014e81c445f114b9772
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,3 +0,0 @@
fileFormatVersion: 2
guid: a876daf45e834b59879bf88d11a77ebe
timeCreated: 1777908804

View File

@@ -1,7 +0,0 @@
namespace Unicorn.Game.Player
{
public class Player: LivingEntity
{
}
}

View File

@@ -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

View 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("주것서영.");
}
}
}