- Edited
I have been translating my Unity project to Godot however I have stumbled into an issue: Everything looks the same as my Unity however "Node3D targetobjects " always prints "NULL". Can anyone see the problem or improve on this code? It's equivalent worked fine in Unity. Thank you in advance.
private Node3D Search()
{objects = null;
objects = new Godot.Collections.Array{GetTree().GetNodesInGroup("target")};var closest_distance = Mathf.Inf;
foreach (Node3D targetobjects in objects)
{
GD.Print(targetobjects);
distance = Deviant.Position.DistanceTo(targetobjects.Position);
if ( distance < closest_distance )
{
Target = targetobjects;
distance = closest_distance;
}
}
return Target;
}
Error code
E 0:00:01:0608 Godot.Node3D player_geo.Search(): System.NullReferenceException: Object reference not set to an instance of an object.
<C# Error> System.NullReferenceException
<C# Source> player_geo.cs:1171 @ Godot.Node3D player_geo.Search()
<Stack Trace> player_geo.cs:1171 @ Godot.Node3D player_geo.Search()
player_geo.cs:250 @ void player_geo._PhysicsProcess(double)
Node.cs:2389 @ bool Godot.Node.InvokeGodotClassMethod(Godot.NativeInterop.godot_string_name&, Godot.NativeInterop.NativeVariantPtrArgs, Godot.NativeInterop.godot_variant&)
Node3D.cs:1071 @ bool Godot.Node3D.InvokeGodotClassMethod(Godot.NativeInterop.godot_string_name&, Godot.NativeInterop.NativeVariantPtrArgs, Godot.NativeInterop.godot_variant&)
player_geo_ScriptMethods.generated.cs:148 @ bool player_geo.InvokeGodotClassMethod(Godot.NativeInterop.godot_string_name&, Godot.NativeInterop.NativeVariantPtrArgs, Godot.NativeInterop.godot_variant&)
CSharpInstanceBridge.cs:24 @ Godot.NativeInterop.godot_bool Godot.Bridge.CSharpInstanceBridge.Call(nint, Godot.NativeInterop.godot_string_name, Godot.NativeInterop.godot_variant**, int, Godot.NativeInterop.godot_variant_call_error, Godot.NativeInterop.godot_variant*)