godot-steering-ai-framework/project/demos/PursueSeek/BoundaryManager.gd
2020-02-11 13:36:06 -06:00

18 lines
382 B
GDScript

extends Node2D
# Wraps the ships' positions around the world border.
var _world_bounds: Vector2
func _ready() -> void:
_world_bounds = Vector2(
ProjectSettings["display/window/size/width"],
ProjectSettings["display/window/size/height"]
)
func _physics_process(_delta: float) -> void:
for ship in get_children():
ship.position = ship.position.posmodv(_world_bounds)