moar waves

This commit is contained in:
ultrablob 2024-05-07 21:32:08 -04:00
parent 8344c034e4
commit 10655aed3a
18 changed files with 229 additions and 13 deletions

3
Gun.gd
View file

@ -1,10 +1,11 @@
extends Marker2D
@export var bullet: PackedScene
@export var bullet_speed = 500
func shoot():
#print("Shooting")
var node = bullet.instantiate()
node.global_position = global_position
node.linear_velocity = Vector2(500, 0).rotated(global_rotation)
node.linear_velocity = Vector2(bullet_speed, 0).rotated(global_rotation)
$/root/Node2D.add_child(node)