extends Node # Variable to store the path from which JSON data is loaded var loadPath # Variable to store the loaded JSON data var data # Currently placeholder function, to be deprecated once custom content loading is enabled. func _ready(): loadPath = "res://content/stats.json" data = Load.loadJSON(loadPath)