How to convert orientation in PLI ? - Printable Version +- LDraw.org Discussion Forums (https://forums.ldraw.org) +-- Forum: Models and Parts (https://forums.ldraw.org/forum-18.html) +--- Forum: Part Requests (https://forums.ldraw.org/forum-30.html) +--- Thread: How to convert orientation in PLI ? (/thread-12414.html) |
How to convert orientation in PLI ? - Zhengrong Zang - 2014-02-08 I am a new to use LPub creating instructions, now I have a touch sensor in PLI, I want to in differt orientation, for example, if I want view the yellow button on fr of otouch sensor, how can I config it in PLI.mpd? 1 16 180 0 0 0 0 0 0 0 0 0 0 0 879.dat Re: How to convert orientation in PLI ? - Max Martin Richter - 2014-02-08 Hej, you have to open the PLI.mpd and add this line: Code: 1 0 0 0 0 -1 0 0 0 1 0 0 0 -1 879.dat "0 FILE" and "0 NOFILE" meta command. So it should look like this: Code: 0 FILE The line you had given was a bit wrong. This should normally result in an error or the part is simply not shown, because it is scaled to 0 in all direction. ;-) /Max Re: How to convert orientation in PLI ? - Zhengrong Zang - 2014-02-08 Max Martin Richter Wrote:Hej,Thanks you very much, I got it. |