More World Generation, more Camera, other stuff.

This commit is contained in:
gdz
2025-08-08 19:39:33 +02:00
parent 802918e5b8
commit b429afcb81
22 changed files with 382 additions and 334 deletions

View File

@@ -1,7 +1,8 @@
using Godot;
using System;
using Math = Ecosystem.utility.Math;
namespace Ecosystem.scenes.entities.fly;
public partial class Fly : BaseEntity
{
[Export] public float _tx = 0;
@@ -59,6 +60,7 @@ public partial class Fly : BaseEntity
public override void _Process(double delta)
{
base._Process(delta);
step();
}
}
}