Preview:
extends Area2D



var speed = 750



func _physics_process(delta):

    position += transform.x * speed * delta



func _on_Bullet_body_entered(body):

    if body.is_in_group("mobs"):

        body.queue_free()

    queue_free()
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter