무리무리무리무리

This commit is contained in:
김도환
2026-05-10 05:57:28 +09:00
parent b8a119be87
commit 8f68e49e19
16 changed files with 1227 additions and 19 deletions

View File

@@ -1,3 +1,4 @@
using System;
using UnityEngine;
namespace Unicorn.Hitbox
@@ -5,6 +6,15 @@ namespace Unicorn.Hitbox
public class UnicornHitbox : MonoBehaviour
{
public UnicornHitboxDataSObj hitboxData;
private SpriteRenderer _spriteRenderer;
private bool _hitable = false;
private void Start()
{
_spriteRenderer = GetComponent<SpriteRenderer>();
_hitable = false;
}
private void OnTriggerEnter2D(Collider2D other)
{