PositiverHeld Is it possible to add an additional parameter (a counter as Int) to a ColorRect? Thx and cya
xyz PositiverHeld Attach a script to the color rect node that defines the property: extends ColorRect var counter: int
DaveTheCoder You can also use metadata, but you have to keep track of the name and type. Adding properties with a script is safer. https://docs.godotengine.org/en/4.3/classes/class_object.html#class-object-method-set-meta I've used metadata for linking items in a re-orderable Container to a separate data structure. It seemed like the logical way to do it.
PositiverHeld Thank you so much for your quick and helpful answers! Once you know how to do it, it’s surprisingly straightforward. It works exactly as I hoped—thanks again! Thx and cya