Tory Xiao 5 Posted May 30, 2022 I tried 3den Enhanced mod but it only provides the function of copying the array of positions and classname of each component in the composition, no rotation info Share this post Link to post Share on other sites
sarogahtyp 1109 Posted May 30, 2022 I did not find an easy solution but you could use the debug console (in "Tools" menu or shortcut Ctrl + D ) for it. First select the object what you need the rotation of. Then open debug console and paste this in it: copyToClipboard str ( get3DENSelected "object" select 0 get3DENAttribute "rotation" ); Press "Local Exec" or just hit Enter key and the rotation is in your clipboard. 3 Share this post Link to post Share on other sites
Tory Xiao 5 Posted May 30, 2022 9 hours ago, sarogahtyp said: I did not find an easy solution but you could use the debug console (in "Tools" menu or shortcut Ctrl + D ) for it. First select the object what you need the rotation of. Then open debug console and paste this in it: copyToClipboard str ( get3DENSelected "object" select 0 get3DENAttribute "rotation" ); Press "Local Exec" or just hit Enter key and the rotation is in your clipboard. But it seems still only 1 rotation gets copied not the whole array Share this post Link to post Share on other sites
sarogahtyp 1109 Posted May 30, 2022 i could swear it was the whole array when i tested it. Will take a look at it tomorrow 1 Share this post Link to post Share on other sites
Larrow 2823 Posted May 31, 2022 _output = []; { _output pushBack [ typeOf _x, _x get3DENAttribute "position" select 0, _x get3DENAttribute "rotation" select 0 ]; }forEach get3DENSelected "object"; copyToClipboard str _output; 3 Share this post Link to post Share on other sites