Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2025 Jan 22 9:27 pm)
You mean you want a prop that loads from an outside obj file? If so, it's called external geometry and it's easy to do in notepad. Open your pp2 file in notepad and you'll see something like this. (I've cut out most of the vertice lines). --------------------------------- { version { number 4.01 } prop myprop { geomCustom { numbVerts 24 numbTVerts 24 numbTSets 36 numbElems 12 numbSets 36 v -2.092500 0.000000 0.000000 v 2.092500 0.000000 0.000000 ----- a lot more vertice lines ------ f 13/24 10/21 17/22 f 17/22 21/23 13/24 } } prop myprop { name myprop on bend 1 dynamicsLock 1 hidden 0 etc, etc, etc --------------------------------- You need to replace those vertice lines, (which are the text representation of your prop's points in 3d space), with a path to your obj file. Replace this part ..... --------------------------------- prop myprop { geomCustom { numbVerts 24 numbTVerts 24 numbTSets 36 numbElems 12 numbSets 36 v -2.092500 0.000000 0.000000 ------- etc, right down to ... --------- f 13/24 10/21 17/22 f 17/22 21/23 13/24 } } --------------------------------- with these lines ...... --------------------------------- prop myprop_1 { storageOffset 0 0 0 objFileGeom 0 0 :Runtime:Geometries:myfolder:myprop.obj } ----------------------------------- The folder name must be the folder in Geometries where you're going to store your prop, and the prop name must be the name it has in poser. Also, you have to write 'myprop_1', because poser always adds an ID number after multiple props or figures. Your final file will look like this -------------------------------- { version { number 4.01 } prop balcony1_1 { storageOffset 0 0 0 objFileGeom 0 0 :Runtime:Geometries:myfolder:myprop.obj } prop myprop_1 { name myprop on bend 1 dynamicsLock 1 hidden 0 -----etc, etc------------ Save the whole file with a new name (just in case) and the extension .pp2. Put it in props and open it. All you're doing is telling poser the path to read the geometry from, as opposed to reading it from the pp2 file itself. mac
You MUST make sure that all names are exactly as they were in the original. If your prop, when imported, was called 'thing1', the path must read objFileGeom 0 0 :Runtime:Geometries:myfolder:thing1.obj You could also try changing the line 'bend 1' to 'bend 0', although this should only screw up figures, not props. Let me know how it goes. At worst, send me it and I'll have a look. mac
I tried what you said Mac, And it keeps freezing up my Poser :( It begins to load, then stops all acticity, and hangs poser up.. It worked once, but again the OBJ came out all screwey..so I changed the bend setting as you said, and now it refuses to work at all.. I must have messed something up somewhere..Would you mind taking a look over it for me, and pointing me in the right direction?
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
I've just starting getting into making my own props, and I was just wondering if anyone can help me out here... I made a some what basic prop, just a quick test, and after many a time back and forth from Poser to Rhino, I came up with something I liked, that works. My problem is..How do I get Poser, to create a PP2 that loads the geometery (ie the OBJ it's self)? Rather than creating it's own custom geometery, based on the OBJ I imported. It really drove me nuts all day, I even tried altering an exsisting PP2, but after I'd copied and pasted the code from the one Poser created (the make custom geom), and added the storage offset part, that's in the PP2, which loads an OBJ..my object, came out..Uhm somewhat scrambled :S If anyone can help, i'd really appreciate it :) Thanks for your time Mike