Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tutorials/scripting/gdscript/gdscript_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~~~~~~~~~~~
Expand Down