mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 13:30:07 +01:00
Minor spelling fixes in strings, comments and non-code files. (#1236)
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
@@ -10,7 +10,7 @@ var metallic_strength := 0.0
|
||||
var roughness_strength := 0.0
|
||||
|
||||
|
||||
# Convert our data into an dictonary so we can convert it
|
||||
# Convert our data into an dictionary so we can convert it
|
||||
# into the JSON format.
|
||||
func make_json() -> String:
|
||||
var json_dict := {}
|
||||
@@ -26,7 +26,7 @@ func make_json() -> String:
|
||||
return JSON.stringify(json_dict)
|
||||
|
||||
|
||||
# Convert the passed in string to a JSON dictonary, and then
|
||||
# Convert the passed in string to a JSON dictionary, and then
|
||||
# fill in our data.
|
||||
func from_json(json_dict_as_string: String) -> void:
|
||||
var json_dict: Dictionary = JSON.parse_string(json_dict_as_string)
|
||||
|
||||
Reference in New Issue
Block a user