Player movement and animation
This commit is contained in:
parent
f456725cf2
commit
0dd3f24030
9 changed files with 700 additions and 38 deletions
6
metroidvania/DustEffect.gd
Normal file
6
metroidvania/DustEffect.gd
Normal file
|
@ -0,0 +1,6 @@
|
|||
extends Node2D
|
||||
|
||||
var motion = Vector2(rand_range(-20, 20), rand_range(-10, -40))
|
||||
|
||||
func _process(delta):
|
||||
position += motion * delta
|
Loading…
Add table
Add a link
Reference in a new issue