9 lines
220 B
GDScript
9 lines
220 B
GDScript
extends 'res://addons/gut/hook_script.gd'
|
|
|
|
|
|
func run():
|
|
print('!! --- post-run script --- !!')
|
|
var oc = GutUtils.OrphanCounter.new()
|
|
oc.record_orphans("post_run")
|
|
oc.log_all()
|
|
print('!! !!') |