Hello! Does anybody know how to fix these two errors, I don’t have any experience coding on Godot and I don’t know why it’s crashing. I am currently making the warioware mission and I am using Godot v4 because my old computer cannot open it without crashing. (If you need more images, I can put more)
Comments 6
the error codes are
01:996 garlic_.gd:4 @ @implicit_ready(): Node not found: “../Player/Area2D” (relative to “/root/Minigame_1/Garlic_”).
01:996 minigame_1.gd:2 @ @implicit_ready(): Node not found: “ThemedTimer” (relative to “/root/Minigame_1”).
E 0
<C++ Error> Method/function failed. Returning: nullptr
<C++ Source> scene/main/node.cpp:1878 @ get_node()
garlic_.gd:4 @ @implicit_ready()
and
E 0
<C++ Error> Method/function failed. Returning: nullptr
<C++ Source> scene/main/node.cpp:1878 @ get_node()
minigame_1.gd:2 @ @implicit_ready()
hey! The paths seem incorrect. Change the name in the path to a lowercase m so it can be “/root/minigame_1/Garlic_”). When you refer to scenes, you need to make sure they are exactly how you spelled them when you named them. Hopefully that makes sense. C:
@supercoolcodinggirl
Hello! Thanks for the help but I can’t seem to find anything in scripts containing minigame_1 or Garlic_
You have to drag them into the scene from the file system. So you should also take the themedtimer and drag it into the viewport from the file system.
@supercoolcodinggirl
thank you! I fixed both errors
yay!!
Sign in to join the conversation.