This repository has been archived on 2024-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
Jessist/addons/godot-action/GDAction/RemoveNode/GDActionNodeRemove.gd

21 lines
372 B
GDScript3
Raw Permalink Normal View History

2022-06-18 13:05:48 +02:00
class_name GDActionNodeRemove extends GDActionNodeInstant
func get_class() -> String:
return "GDActionNodeRemove"
func _init(action, key, node).(action, key, node):
pass
func _start_action():
node.queue_free()
finished()
func remove_node(time: float, with_range: float, delay = 0.0, speed = 1.0):
self.delay = delay
self.speed = speed
_reset_value()
_run()