fix player bullet
parent
160a860fef
commit
55b7e97f86
|
@ -68,8 +68,8 @@ func _shoot():
|
|||
bullet = bullet_preload.instance()
|
||||
bullet.target = target
|
||||
get_parent().add_child(bullet)
|
||||
bullet.global_position.x = self.global_position.x + 12
|
||||
bullet.global_position.y = self.global_position.y - 4
|
||||
bullet.global_position.x = self.global_position.x + 8
|
||||
bullet.global_position.y = self.global_position.y + 8
|
||||
|
||||
func _draw():
|
||||
if target != null and is_instance_valid(target):
|
||||
|
|
Loading…
Reference in New Issue