What is local space? Coordinates measured relative to a parent node or object. topicladder game-dev games What is world space? Coordinates after parent movement, rotation, scale, and hierarchy are applied. topicladder game-dev games Why check pivot? The pivot decides the point around which rotation or scaling appears to happen. topicladder game-dev games Why log local and global? A transform bug often appears only when the stored offset and visible result are compared. topicladder game-dev games What does the 'Name the parent' step prove? Choose the node that should carry the child sprite. Check: The child has a clear anchor instead of floating in world space. topicladder game-dev games What does the 'Write the local offset' step prove? The child position should make sense before the parent moves. Check: The offset can be stated as a small x/y pair from the parent. topicladder game-dev games What does the 'Apply parent transform' step prove? Move, rotate, or scale one parent value at a time. Check: The world result changes for a reason you can explain. topicladder game-dev games What does the 'Check the pivot' step prove? Rotation should happen around the intended anchor. Check: The parent origin and sprite pivot are named separately. topicladder game-dev games When would you use `child.position = Vector2(4, 1)`? Use it to set local offset. Expected signal: The sprite is attached relative to the parent topicladder game-dev command When would you use `parent.rotation_degrees = 30`? Use it to rotate the parent. Expected signal: The child offset turns with the parent axes topicladder game-dev command When would you use `print(child.position, child.global_position)`? Use it to compare local and world. Expected signal: The stored offset and visible result are checked separately topicladder game-dev command Where can you review the full 2D Transform Stack for Sprites context? Use the TopicLadder page for the text lesson, examples, downloads, and practice task: https://topicladder.com/learn/games/2d-transform-stack-for-sprites/ topicladder game-dev games source