New Fairies

This commit is contained in:
MaddoScientisto 2025-02-23 21:08:52 +01:00
commit ce4df42890
11 changed files with 253 additions and 53 deletions

View file

@ -6,7 +6,10 @@ using Godot;
public partial class Actor : CharacterBody2D
{
[Export]
public float MovementSpeed { get; private set; }
public float MovementSpeed { get; private set; } = 20f;
[Export]
public float Health { get; private set; } = 4f;
[ExportCategory("Defeat Script")]
[Export] public Node2D DefeatScript { get; set; }