Enforce GDScript and C# dictionary spacing style guidelines in code samples

Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Co-authored-by: Micky <66727710+Mickeon@users.noreply.github.com>
This commit is contained in:
ProgrammerOnCoffee 2025-06-10 10:02:25 -04:00
parent ca1e4785b2
commit 11af23a7a7
6 changed files with 39 additions and 39 deletions

View file

@ -272,7 +272,7 @@
[b]Note:[/b] You must implement [method _get_plugin_name] for the state to be stored and restored correctly.
[codeblock]
func _get_state():
var state = {"zoom": zoom, "preferred_color": my_color}
var state = { "zoom": zoom, "preferred_color": my_color }
return state
[/codeblock]
</description>