forked from kanium/starcheese
16 lines
193 B
GDScript3
16 lines
193 B
GDScript3
|
|
extends Node
|
||
|
|
|
||
|
|
var weapons = []
|
||
|
|
|
||
|
|
|
||
|
|
func _ready():
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
func fire_all():
|
||
|
|
get_tree().call_group("weapons", "fire")
|
||
|
|
|
||
|
|
|
||
|
|
func cease_fire_all():
|
||
|
|
get_tree().call_group("weapons", "cease_fire")
|