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
Binary file not shown.

Before

Width:  |  Height:  |  Size: 564 KiB

After

Width:  |  Height:  |  Size: 417 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 KiB

@@ -50,7 +50,6 @@ public partial class FarmingControls : Node3D
var dropPlane = new Plane(new Vector3(0, 0, 10), 10); var dropPlane = new Plane(new Vector3(0, 0, 10), 10);
Vector3? position3D = dropPlane.IntersectsRay(_camera.ProjectRayOrigin(mousePosition), Vector3? position3D = dropPlane.IntersectsRay(_camera.ProjectRayOrigin(mousePosition),
_camera.ProjectRayNormal(mousePosition)); _camera.ProjectRayNormal(mousePosition));
Debug.Print(position3D.ToString());
if (position3D.HasValue) if (position3D.HasValue)
{ {
@@ -25,6 +25,7 @@ public partial class FieldService : Node3D
{ {
if (fields.TryGetValue(key, out FieldBehaviour field)) if (fields.TryGetValue(key, out FieldBehaviour field))
return field; return field;
return field;
return null; return null;
} }