spool system redo nearly done

still need to fix unload
This commit is contained in:
Tabby 2025-11-02 00:51:39 +11:00
parent 0ed04fbc93
commit b83ef6b77b
12 changed files with 286 additions and 46 deletions

View file

@ -6,8 +6,10 @@ class_name Spool
@export var link : String
# tags?
func list_string() -> String:
func list_string(bold : bool = false) -> String:
var result : String = name
if bold:
result = "**" + result + "**"
if link:
result = "[" + result +"]("+link+")"
return result