You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
extends AI
|
|
class_name BulletAI
|
|
|
|
var alive_time: float = 0
|
|
|
|
|
|
func on_process(delta):
|
|
alive_time += delta
|
|
if alive_time >= 5:
|
|
Global.character_mgr.destroy_character(character.id())
|