Inherited scene uses original Path2D instead of local scene Path2D

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

I have a scene with a Path2D that some agents follow. The scene script has a function that the agent script uses to get Path2D info like closest offset and direction.

Now I created an inherited scene to make exactly the same but with a different path. This scene uses the same 2 scripts but I changed the Path2D curves.

I noticed that this changed the original scene Path2D, but the position is different. Now, when I play the new scene, the agent is following the original scene Path (which is the same but in a different position). I tickled the Local To Scene in the Path2D resource and even created a new Path2D and referenced its name from the script instead of the old one, but the agent keep following the original path (even though is not longer referenced anywhere)

What am I doing wrong?