├── LICENSE.txt ├── README.md ├── doc ├── .gdignore ├── README.md ├── files │ ├── ENUMS.md │ ├── JSON-CONFIG-FILE.md │ ├── JSON-CONFIG-PROCESSOR.md │ ├── JSON-PROPERTY-ARRAY.md │ ├── JSON-PROPERTY-BOOL.md │ ├── JSON-PROPERTY-COLOR.md │ ├── JSON-PROPERTY-ENUM.md │ ├── JSON-PROPERTY-FILE.md │ ├── JSON-PROPERTY-IMAGE.md │ ├── JSON-PROPERTY-INTEGER.md │ ├── JSON-PROPERTY-JSON-CONFIG-FILE.md │ ├── JSON-PROPERTY-NUMBER.md │ ├── JSON-PROPERTY-OBJECT.md │ ├── JSON-PROPERTY-PERCENTAGE.md │ ├── JSON-PROPERTY-STRING.md │ └── JSON-PROPERTY.md └── images │ ├── code_example.png │ ├── incorrect_json.png │ ├── json_configuration_file_banner.png │ ├── json_configuration_file_icon.png │ └── valid_json.png └── json_config_file ├── json_config_file.gd ├── json_config_processor.gd └── json_properties ├── json_property.gd ├── json_property_array.gd ├── json_property_bool.gd ├── json_property_color.gd ├── json_property_enum.gd ├── json_property_file.gd ├── json_property_image.gd ├── json_property_integer.gd ├── json_property_json_config_file.gd ├── json_property_number.gd ├── json_property_object.gd ├── json_property_percentage.gd └── json_property_string.gd /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/README.md -------------------------------------------------------------------------------- /doc/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/files/ENUMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/ENUMS.md -------------------------------------------------------------------------------- /doc/files/JSON-CONFIG-FILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-CONFIG-FILE.md -------------------------------------------------------------------------------- /doc/files/JSON-CONFIG-PROCESSOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-CONFIG-PROCESSOR.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-ARRAY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-ARRAY.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-BOOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-BOOL.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-COLOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-COLOR.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-ENUM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-ENUM.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-FILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-FILE.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-IMAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-IMAGE.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-INTEGER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-INTEGER.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-JSON-CONFIG-FILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-JSON-CONFIG-FILE.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-NUMBER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-NUMBER.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-OBJECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-OBJECT.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-PERCENTAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-PERCENTAGE.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY-STRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY-STRING.md -------------------------------------------------------------------------------- /doc/files/JSON-PROPERTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/files/JSON-PROPERTY.md -------------------------------------------------------------------------------- /doc/images/code_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/images/code_example.png -------------------------------------------------------------------------------- /doc/images/incorrect_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/images/incorrect_json.png -------------------------------------------------------------------------------- /doc/images/json_configuration_file_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/images/json_configuration_file_banner.png -------------------------------------------------------------------------------- /doc/images/json_configuration_file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/images/json_configuration_file_icon.png -------------------------------------------------------------------------------- /doc/images/valid_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/doc/images/valid_json.png -------------------------------------------------------------------------------- /json_config_file/json_config_file.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_config_file.gd -------------------------------------------------------------------------------- /json_config_file/json_config_processor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_config_processor.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_array.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_array.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_bool.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_bool.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_color.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_color.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_enum.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_enum.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_file.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_file.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_image.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_image.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_integer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_integer.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_json_config_file.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_json_config_file.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_number.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_number.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_object.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_object.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_percentage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_percentage.gd -------------------------------------------------------------------------------- /json_config_file/json_properties/json_property_string.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/98teg/JSONConfigFile/HEAD/json_config_file/json_properties/json_property_string.gd --------------------------------------------------------------------------------