I'm trying to understand the difference between a Spatial node's global_tranform.origin
vs translation
When I print out both, they seem to always be identical, at least in the ways I'm using them so far.
print(global_transform.origin, translation)
The docs say that translation is "Local translation of this node." and the the origin is the "World space (global) Transform of this node", but I can't visualize the difference.
Are they the same thing? and if not, it what cases would they be different? Thanks!