2D Character and weapons

This commit is contained in:
Marco 2025-06-17 11:57:59 +02:00
commit cc9c4e5aa1
37 changed files with 1115 additions and 91 deletions

View file

@ -0,0 +1,11 @@
using Godot;
namespace Cirno.Scripts.Utils;
public static class VectorExtensions
{
public static Vector2 ToVector2(this Vector3 original)
{
return new Vector2(original.X, original.Z);
}
}

View file

@ -0,0 +1 @@
uid://b2r4bucv0o1ui