I have a scene instance that I'm just trying to assign to a variable and it seems like it's not working.
blueprint.contents = crate.contents
print("Why")
print(crate.contents)
print(blueprint.contents)
This outputs:
Why
[Spatial:242788]
Null
Where "Null" isn't what I am expecting. Is there a known glitch, or a limitation I'm running up against with what I'm trying to do? Because I've just run into this and I can immediately tell it's something that is going to drive me mad if I don't ask.