Skip to content

Commit fe5b8f1

Browse files
authored
Merge pull request #347 from endlessm/push-sqomxupkwmlk
SimpleCharacter: Fix axis confusion in tooltip
2 parents bfd553d + d54673e commit fe5b8f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

addons/block_code/simple_nodes/simple_character/simple_character.gd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ static func setup_custom_blocks():
185185
block_definition.display_template = "move with {player: NIL} buttons as {kind: NIL}"
186186
block_definition.description = """Move the character using the “Player 1” or “Player 2” controls as configured in Godot.
187187
188-
“Top-down” enables the character to move in both x (vertical) and y (horizontal) dimensions, as if the camera is above the character, looking down. No gravity is added.
188+
“Top-down” enables the character to move in both x (horizontal) and y (vertical) dimensions, as if the camera is above the character, looking down. No gravity is added.
189189
190-
“Platformer” enables the character to move as if the camera is looking from the side, like a side-scroller. Gravity is applied on the x (vertical) axis, making the character fall down until they collide.
190+
“Platformer” enables the character to move as if the camera is looking from the side, like a side-scroller. Gravity is applied on the y (vertical) axis, making the character fall down until they collide with something.
191191
192-
“Spaceship” uses the left/right controls to turn the character and up/down controls to go forward or backward."""
192+
“Spaceship” uses the left/right controls to rotate the character and up/down controls to go forward or backward in the direction they are pointing."""
193193
# TODO: delta here is assumed to be the parameter name of
194194
# the _process or _physics_process method:
195195
block_definition.code_template = "move_with_player_buttons({player}, {kind}, delta)"

0 commit comments

Comments
 (0)