Compare commits

...

2 Commits

Author SHA1 Message Date
Just Dzhi cb65aa0333 Merge branch 'main' of http://meowo.cc:3000/meowo/ld54 2023-10-01 19:29:31 +04:00
Just Dzhi 55b7e97f86 fix player bullet 2023-10-01 19:29:27 +04:00
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ func _shoot():
bullet = bullet_preload.instance() bullet = bullet_preload.instance()
bullet.target = target bullet.target = target
get_parent().add_child(bullet) get_parent().add_child(bullet)
bullet.global_position.x = self.global_position.x + 12 bullet.global_position.x = self.global_position.x + 8
bullet.global_position.y = self.global_position.y - 4 bullet.global_position.y = self.global_position.y + 8
func _draw(): func _draw():
if target != null and is_instance_valid(target): if target != null and is_instance_valid(target):