how to solve error(Failed loading resource) ?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By AuraBunny

When I opened my project, I got an error below.

ERROR: Failed loading resource: res://tutorial/Ship.vs
At: core/io/resource_loader.cpp:285

But, res://tutorial/Ship.vs is not exist because It has been deleted.
How can I fix this error?

p.s: I am using godot 3.1(c#)

:bust_in_silhouette: Reply From: johnygames

Probably you are trying to load this resource from somewhere in your code. Find the place where you call it from and delete the line that loads the resource.

Thanks for your advise.
But, There is no code to call it from project.
Finally I found the reason.
the reason is Moving.vs that renamed from Ship.vs.
error is gone after delete Moving.vs.
as I guess, this is a bug to renaming visual script file.

AuraBunny | 2019-12-30 04:03