Hello, I got following error: " attempt to call function 'rotate y' in base null instance"
How to solve this? when i run the scene i see a sky but no moving camera, code came from godotreceips kidcancode.
thx, Nobel
Can you share the code snippet that is not working?
Based on the error, I think the issue is that you do not have the Camera node assigned to the variable you are calling rotate_y on.
rotate_y
extends Spatial func _process(delta): $CameraHub.rotate_y(0.01)
Is there a child node called CameraHub on the node that the script above is attached to?
CameraHub