Cleaned up house mockup outline and removed spammy debug log

This commit is contained in:
2025-04-30 18:49:46 +02:00
parent 16a65f7155
commit d11fc9f1f2
4 changed files with 1 additions and 1 deletions
@@ -50,7 +50,6 @@ public partial class FarmingControls : Node3D
var dropPlane = new Plane(new Vector3(0, 0, 10), 10);
Vector3? position3D = dropPlane.IntersectsRay(_camera.ProjectRayOrigin(mousePosition),
_camera.ProjectRayNormal(mousePosition));
Debug.Print(position3D.ToString());
if (position3D.HasValue)
{
@@ -25,6 +25,7 @@ public partial class FieldService : Node3D
{
if (fields.TryGetValue(key, out FieldBehaviour field))
return field;
return field;
return null;
}