I have a shooter node in my main scene which instances bullets. I want the bullets to go in a certain direction but their movement is distorted by shooter's movement. Here's the code for bullets:
func _process(delta):
position.x += delta * 300
So what should I do to make bullets independent?