Skip to content

Instantly share code, notes, and snippets.

@tonytins
Created August 8, 2022 20:19
Show Gist options
  • Save tonytins/8f9f76f09bfed3963720b3c3e6afd26e to your computer and use it in GitHub Desktop.
Save tonytins/8f9f76f09bfed3963720b3c3e6afd26e to your computer and use it in GitHub Desktop.
JSON Helper
extends Node
func key_value(json_path, json_file, key, is_dictionary = false):
var file = File.new()
var full_path = str(json_path + json_file);
if file.file_exists(full_path):
file.open(full_path, File.READ)
var result = parse_json(file.get_as_text())
if is_dictionary == true:
result.clear()
return result[key]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment