Revert "Merge pull request #458 from KirbyKid256/pulls/more-animated-tilesets"

This reverts commit 07cb5015cf, reversing
changes made to ad03246040.
This commit is contained in:
JoeMama
2025-10-10 11:06:32 +01:00
parent 7e0443d030
commit 437f98884d
14 changed files with 28 additions and 390 deletions

View File

@@ -54,12 +54,6 @@ func get_resource(resource: Resource) -> Resource:
send_to_cache(original_resource.resource_path, new_font)
return new_font
elif original_resource is JSON:
var new_json = JSON.new()
new_json.parse(FileAccess.get_file_as_string(path))
send_to_cache(original_resource.resource_path, new_json)
return new_json
send_to_cache(original_resource.resource_path, original_resource)
return original_resource