무리무리무리무리
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user