![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | Chickentendie007 |
It shows an error that is it trying to get the node but then it failing to find the node.
E 0:00:00.713 get_node: (Node not found: “Head/Camera/gun_pick_Up” (relative to “/root/Player”).)
E 0:00:00.713 get_node: (Node not found: “Head” (relative to “/root/Player”).)
E 0:00:00.713 get_node: (Node not found: “Timer” (relative to “/root/Player”).)
E 0:00:00.713 get_node: (Node not found: “Head/Camera/Head_Bob” (relative to
onready var gun_pick_up = $Head/Camera/gun_pick_Up
onready var head = $Head
onready var timer = $Timer
onready var anim_play = $Head/Camera/Head_Bob
cant figure out how to input images without it being only on my laptop
That is a url to a local file, it can’t be viewed.
zhyrin | 2023-03-23 11:32
You can upload images to an image sharing website like imgur and link to the uploaded image.
zhyrin | 2023-03-23 13:26
With only the variable declarations and errors it’s hard to say what causes the problem. Having a look at your scene tree and seeing to which node this script is attached would help.
My two guesses are:
a) the nodes you try to reference don’t exist
b) you misspelled the nodepaths
zhyrin | 2023-03-23 13:30