8 lines
188 B
GDScript3
8 lines
188 B
GDScript3
|
extends Weapon
|
||
|
|
||
|
func _init():
|
||
|
projectile = preload("res://projectiles/rpg_bow.tscn")
|
||
|
held_hand = "left"
|
||
|
activate_sound = preload("res://assets/audio/Sounds/SR_RPGPL.xx_raik.gzp.wav")
|
||
|
|