mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 15:38:14 +00:00
10 lines
269 B
GDScript
Executable File
10 lines
269 B
GDScript
Executable File
extends StaticBody2D
|
|
|
|
@export var vertical_direction := 1
|
|
const MOVE_SPEED := 50
|
|
@export var top := -244
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
global_position.y += (MOVE_SPEED * delta) * vertical_direction
|
|
global_position.y = wrap(global_position.y, top, 64)
|