cirnogodot/Scripts/Interactables/HitButton.cs

21 lines
424 B
C#
Raw Normal View History

2025-05-27 15:11:02 +02:00
using Godot;
namespace Cirno.Scripts.Interactables;
public partial class HitButton : Switch
{
public override void _Ready()
{
base._Ready();
this.AreaEntered += OnAreaEntered;
}
private void OnAreaEntered(Area2D area)
{
if (area is not Bullet bullet) return;
this.Activate(this.ActivationType);
bullet.RequestCollisionDestruction();
}
}