Hi,
I'd like to add a cached Part to several other Parts in a thread-safe manner.
The only possible method I've found is using addTargetPart(sourcePart) which, I understand it, does some (minor) manipulations on the source Part, which I'd like to avoid (due to theoretical thread-safety and garbage collection issues).
Is there a way to add the cached Part without changing it?
I could of course clone the entire package, but that would result in ...