Godot Version
Replace this line with your Godot version
Question
#when im running a scene that contains this code
rpc_id(peer_id, “move”)
#and im running the project with the main scene that contains below code
@rpc(“any_peer”)
func move():
print(“ Client received move()!”)
#the print statement is not beeing printed
#and im getting the following error
Unable to get the RPC configuration for the function “move” at path: “/root/rootnode”. This happens when the method is missing or not marked for RPCs in the local script.
#both the scripts are attached to the root nodes of their scenes and both the root nodes are named “rootnode”
#i first did it with different names and it was giving the same error
#i sat with ai for a day and did everything it suggested but still its not solved
#Thank you