citylimits/scripts/autoload/jsonhelper.gd
Tony Bark 65cc08fab6 Decoupling more hardcoded data
- Created a json helper to streamline decoupling of hardcoded data
- Removed non-existent VR bridge reference
- News ticker files are no longer hardcoded to the game.
- Removed hardcoded city and mayor names using Json helper
2022-08-08 16:10:14 -04:00

11 lines
353 B
GDScript

extends Node
func key_value(json_path, json_file, key, is_dictionary = false):
var file = File.new()
var news_outlets_path = str(json_path + json_file);
if file.file_exists(news_outlets_path):
file.open(news_outlets_path, File.READ)
var result = parse_json(file.get_as_text())
if is_dictionary == true:
result.clear()
return result[key]