fixed indentation causing render issue on code sample

bad indentation causing render error if this code sample
This commit is contained in:
Alexander Morland
2025-11-24 16:31:37 +01:00
committed by GitHub
parent 0e4add404c
commit b5965dddcd

View File

@@ -2394,12 +2394,12 @@ There are a few things to keep in mind here:
to the ``state.gd`` base class, even if it does nothing. This brings us to the fact that you
can pass expressions to the base constructor as well, not just variables, e.g.:
::
::
# idle.gd
# idle.gd
func _init():
super(5)
func _init():
super(5)
Static constructor
~~~~~~~~~~~~~~~~~~