SupaLidlGame/Entities/Projectile.cs

42 lines
990 B
C#
Raw Normal View History

2023-05-15 00:20:17 -07:00
using Godot;
2023-05-26 22:28:08 -07:00
using SupaLidlGame.Characters;
using SupaLidlGame.BoundingBoxes;
2023-05-15 00:20:17 -07:00
namespace SupaLidlGame.Entities
{
2023-05-26 22:28:08 -07:00
public partial class Projectile : RigidBody2D
2023-05-15 00:20:17 -07:00
{
2023-05-26 22:28:08 -07:00
public Vector2 Velocity => Direction * Speed;
[Export]
public float Speed { get; set; }
[Export]
public Vector2 Direction { get; set; }
[Export]
public Hitbox Hitbox { get; set; }
public Character Character { get; set; }
public override void _PhysicsProcess(double delta)
{
Vector2 velocity = Velocity;
MoveAndCollide(velocity * (float)delta);
}
public void _on_hitbox_hit(BoundingBox box)
{
if (box is Hurtbox hurtbox)
{
hurtbox.InflictDamage(
Hitbox.Damage,
Character,
Hitbox.Knockback,
knockbackVector: Direction
);
}
}
2023-05-15 00:20:17 -07:00
}
}