trying to get essentials working

This commit is contained in:
anonoe 2026-02-09 20:49:52 +01:00
parent c30449c479
commit 34ba37312a
Signed by: anonoe
SSH key fingerprint: SHA256:OnAs6gNQelOnDiY5tBpDYKQiuTgBvnmIdMo5P09cdqg
9 changed files with 80 additions and 16 deletions

16
scripts/Visual.cs Normal file
View file

@ -0,0 +1,16 @@
using Godot;
public partial class PlayerVisual : Node2D
{
[Export] public float Radius = 8f;
public override void _Draw()
{
DrawCircle(Vector2.Zero, Radius, new Color(0.2f, 0.8f, 1.0f));
}
public override void _Ready()
{
QueueRedraw();
}
}