In the video about, take notice how the initial position is -1.192093e-07 but then typing in that same value manually moves it to a different location int the game world. And then typing in 0 puts it where it should be.
This is causing all kinds of issues in my game and I suppose I need a better understand of what’s happening here. Thank you in advance.
Don’t worry, nothing has been broken here. The problem is that -1.192093e-07 is NOT the same as -1,1920. See that e? It means that the number before e is multiplied by 10 ^ (next number), and in this case this will be a very low value, something about -0,000000192093, which is pretty close to zero, that’s why setting it to 0 looked like you changed it back to default.
Hope I helped somehow, good luck.