mirror of
https://github.com/RYGhub/the-cold-night.git
synced 2024-11-21 20:24:20 +00:00
🐛 Fix BulletMovement
not having the delta applied anymore
This commit is contained in:
parent
625631a0f0
commit
c8f0eda16f
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@ export var movement_per_second: float = 400.0
|
|||
signal hit(collision)
|
||||
|
||||
|
||||
func _physics_process(_delta):
|
||||
func _physics_process(delta):
|
||||
var direction = Vector2(cos(target.rotation), sin(target.rotation))
|
||||
var collision: KinematicCollision2D = target.move_and_collide(direction * movement_per_second)
|
||||
var collision: KinematicCollision2D = target.move_and_collide(direction * movement_per_second * delta)
|
||||
if collision != null:
|
||||
emit_signal("hit", collision)
|
||||
|
|
Loading…
Reference in a new issue