printer nozzle edits, spool creation

This commit is contained in:
Tabby 2025-10-30 22:32:42 +11:00
parent 319e30e3d4
commit 492990f073
9 changed files with 137 additions and 3 deletions

View file

@ -2,6 +2,12 @@ extends Resource
class_name Spool
@export var name : String
@export var material : String
#@export var material : String
@export var link : String
# tags?
func list_string() -> String:
var result : String = name
if link:
result = "[" + result +"]("+link+")"
return result