Overlap3D Fix

This commit is contained in:
Josef 2025-06-27 07:36:01 +02:00
parent ef45d31599
commit 491ab8b92c
1 changed files with 6 additions and 0 deletions

View File

@ -40,5 +40,11 @@ namespace Rokojori
{
return b.SquareDistanceTo( a ) <= 0;
}
public static bool Has( Capsule3 a, Capsule3 b )
{
return a.DistanceTo( b ) <= 0;
}
}
}