Hello. I’m making my own plugin. But it have a bug - only last node links is “Correct”.
I think this’s due to dictionaries, so I have 1 question:
local massive = {
a = 1,
b = 2,
c = 3,
}
local clone = massive
My question is: is clone
cloned massive
dictionary, or I just created second way to input into massive
with clone
?
local massive = {
a = 1,
b = 2,
c = 3,
}
local clone = massive
clone.a = 5 -- will this affect massive, or clone only?