diff options
Diffstat (limited to 'game/microgames/baseball_kiss/pepe_character.gd')
-rw-r--r-- | game/microgames/baseball_kiss/pepe_character.gd | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/game/microgames/baseball_kiss/pepe_character.gd b/game/microgames/baseball_kiss/pepe_character.gd new file mode 100644 index 0000000..35c5c06 --- /dev/null +++ b/game/microgames/baseball_kiss/pepe_character.gd @@ -0,0 +1,26 @@ +extends CharacterBody2D + + +const SPEED = 300.0 +const JUMP_VELOCITY = -400.0 +var player_control = true + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = 0 + + +func _physics_process(delta): + # Add the gravity. + if not is_on_floor(): + velocity.y += gravity * delta + + if(player_control): + var direction = Input.get_axis("Left", "Right") + if direction: + velocity.x = direction * SPEED + %PepeSprite.animation = "walk" + else: + velocity.x = move_toward(velocity.x, 0, SPEED) + %PepeSprite.animation = "default" + + move_and_slide() |