Cleaned up house mockup outline and removed spammy debug log

remotes/checkIfPRContentChanged-1749880758504311652/farming_mechanic
kziolkowski 9 months ago
parent 16a65f7155
commit d11fc9f1f2

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;
} }

Loading…
Cancel
Save