How to clear data from cache memory?

Godot Version 4.3

I have a scene that I make changes to and save it to the same location. The scene is overwritten, but the old version is still in the cache and when I try to enter the scene, the old version is loaded. Helps only by restarting the game. Maybe there is some way to remove it from the cache to load a new version of the scene?

Just load the scene again using load("path_to_the_scene") and replace the old preloaded scene for the new one.

1 Like

Thanks! It’s realy that simple.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.