2025-03-25 10:49:02 +00:00
|
|
|
@icon("uid://3ugrjpybrl4e")
|
2025-03-24 17:01:51 +00:00
|
|
|
extends RigidBody3D
|
|
|
|
class_name Boat
|
2025-03-24 15:01:39 +00:00
|
|
|
|
|
|
|
|
2025-03-25 10:49:02 +00:00
|
|
|
|
|
|
|
|
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
|