Hello, I wrote a script to export coordinates of objects to text file:
outputFile = createFile "c:\output.txt"
for obj in $ do
(
format "% X:% Y:% Z:%
" obj.name obj.pos.x obj.pos.y obj.pos.z to:outputFile
)
close outputFile
However it export coordinates not precisely, for example an object with coordinates X:-20531.262 gets exported as X:-20531.2
How to edit script to make it export exast position number as shown in 3ds max?