added base helpers and a simple test.

This commit is contained in:
2026-04-10 20:12:50 -04:00
parent d9dfa44a22
commit cb518961e7
16 changed files with 511 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
using Godot;
namespace GodotHelpers.Raycasts;
public record PointQueryResult3D(
GodotObject Collider,
int ColliderId,
Rid Rid,
int Shape
) : CollisionResultBase(Collider, ColliderId, Rid, Shape);