Hi everyone,
I have a cube in a scene and I have the same cube in a different scene. Now I want that if the cube in the first scene gets moved the other cube goes to the same position.
Static variables are maintained between scenes if I remember correctly.
You could try adding a static Vector3 variable to your cube script. have the first cube continuously update the variable with its current position. have the second cube continuously set its position to the static variable.