Boat/Boats/boat.gd

13 lines
284 B
GDScript3
Raw Normal View History

2025-03-24 17:01:51 +00:00
extends RigidBody3D
class_name Boat
2025-03-24 15:01:39 +00:00
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
2025-03-25 00:22:03 +00:00
func _process(_delta: float) -> void:
2025-03-24 15:01:39 +00:00
pass