Attention | Topic was automatically imported from the old Question2Answer platform. | |
Asked By | Jeejus |
Heya! I’m having a bit of trouble calling the save function…
func _on_Area_body_entered(body):
_save()
pass
this coding says that it is expecting at least 1 argument, but when i throw in the argument that is in the function:
func _on_Area_body_entered(body):
_save(content)
pass
it says that content is not declared in the current scope. can you please help me fix this?