a game about throwing hammers made for the github game off
1
2
3
4
5
6
7
extends Node2D

var motion := Vector2(randf_range(-20, 20), randf_range(-10, 10))


func _process(delta: float) -> void:
	position += motion * delta