Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2024 Nov 25 12:38 pm)
I have them, but I'm in the middle of a complete reinstall of the OS (Win2K) and Poser. It will take a few days (nights actually... sigh), I'm also installing SR 4.1 and moving almost everything in the main runtime, but hopefully everything should run faster after that. What is actually that we should try? Did you improved on their importer?
Remember padwan bryce is a patient mans application :-) while it has some of the best default out door daylighting. it also has a very slow non adaptive raytracer the raytraces ALL scene elements not just reflective and refactive materials. I have used the Bryce program since version 2 but after getting version 5.1 for OSX I basicly switched to Cinema4DXL when the poserpropack import plugin was released. good luck.
Stewer -- look really close at the materials system, though. Keeping in mind that it's pretty much what, 5 years old, I think you'll enjoy it. DAZ did right, too -- they grabbed the best pro-am folks available (besides Susan Kitchens), and they now have all of BryceTech's tutes installed in the Arcana. Hit them up quick -- you won't need to tlearn the basics except some nav stuff, but you'll like a lot of the little quirks that are there. Slow as it is, that rendering engine makes some AWFULLY pretty pictures...
thou and I, my friend, can, in the most flunkey world, make, each of us, one non-flunkey, one hero, if we like: that will be two heroes to begin with. (Carlyle)
At first Bryce can be a nightmare but once you get used to moving around the UI and find the amazing things you can create in the deep texture editor, in fact all the editors are amazing, I think you'll love it just like the rest of us addicts. If I can give you any help at all Stewer please drop me an IM. 8) Catlin
IM talking about the original poser propack plugin for 3D MAX,Lightwave and cinema4DXl from curious labs I still keep myold seat of Cinema4DXL 7.3.3installed on my mac OS9 harddrive for importing full poser scenes with materials&animation I dont have greenbriars import tools because you still have to reset vertex weights after import
Attached Link: http://www.keindesign.de/stefan/poser/scripts/objex.py
OK, here's the result of 20 hours of Bryce ownership: My take on OBJ export from Poser, compatible to Turbo Import. That's right, get your Poser figure to Brcye with transparency, but without the need for any intermediate application! Currently only tested with ProPack/Windows, requries the PIL installed (easiest way to install the PIL: Install the [Shockwave export beta](http://www.curiouslabs.com/article/articleview/170/1/65/). I decided to make the script free for today, may change to a little fee some day (got to earn back the $59 I spend on Bryce ;) So get it while it's hot!I downloaded the Shockwave Beta thingy from CL and installed it into P5, loaded a Pz3 and tried the script and it creates an object and an mtl file but obviously stops somewhere in between before it is completely finished. I tried several times and sometimes I get an mtl that has texture information and sometimes it is an empty file.
I get this message:
Traceback (most recent call last):
File "", line 82, in ?
File "", line 37, in write
File "D:Poser5RuntimePythonPILImage.py", line 405, in convert
self.load()
File "D:Poser5RuntimePythonPILImageFile.py", line 125, in load
self.load_prepare()
File "D:Poser5RuntimePythonPILImageFile.py", line 175, in load_prepare
self.im = Image.core.new(self.mode, self.size)
File "D:Poser5RuntimePythonPILImage.py", line 43, in getattr
raise ImportError, "The _imaging C module is not installed"
ImportError: The _imaging C module is not installed"
Every
organisation rests upon a mountain of secrets ~ Julian
Assange
Attached Link: http://www.pythonware.com/products/pil/index.htm
Yes, that's because P5 requires a different version of the PIL. The PIL that comes with the Shockwave exporter is compiled for Python 1.5.3, where P5 ships with Python 2.2. You could have luck with one of the installers linked here. I will try it out myself at home tonight (can't do it right now because we have only Macs at work).When I try to install the PIL for Python 2.2 it tells me theres no Python installed on my computer according to the registry :o/ I have Poser 5, so I should have Python 2.2 too, right?
FREEBIES! | My Gallery | My Store | My FB | Tumblr |
You just can't put the words "Poserites" and "happy" in the same sentence - didn't you know that? LaurieA
Using Poser since 2002. Currently at Version 11.1 - Win 10.
Attached Link: http://effbot.org/zone/python-register.htm
This link could help, but I haven't tried it myself.This is the script that should register python. But I don't see how to USE it? # # script to register Python 2.0 or later for use with win32all # and other extensions that require Python registry settings # # written by Joakim L for Secret Labs AB / PythonWare # # source: # http://www.pythonware.com/products/works/articles/regpy20.htm import sys from _winreg import * # tweak as necessary version = sys.version[:3] installpath = sys.prefix regpath = "SOFTWAREPythonPythoncore%s" % (version) installkey = "InstallPath" pythonkey = "PythonPath" pythonpath = "%s;%sLib;%sDLLs" % ( installpath, installpath, installpath ) def RegisterPy(): try: reg = OpenKey(HKEY_LOCAL_MACHINE, regpath) except EnvironmentError: try: reg = CreateKey(HKEY_LOCAL_MACHINE, regpath) SetValue(reg, installkey, REG_SZ, installpath) SetValue(reg, pythonkey, REG_SZ, pythonpath) CloseKey(reg) except: print "*** Unable to register!" return print "--- Python", version, "is now registered!" return if (QueryValue(reg, installkey) == installpath and QueryValue(reg, pythonkey) == pythonpath): CloseKey(reg) print "=== Python", version, "is already registered!" return CloseKey(reg) print "*** Unable to register!" print "*** You probably have another Python installation!" return if name == "main": RegisterPy() I tried saving it as a .reg file but that wasn't the way to do it L.. so... then what? Save it as a .py? And run it with.. what?
FREEBIES! | My Gallery | My Store | My FB | Tumblr |
You just can't put the words "Poserites" and "happy" in the same sentence - didn't you know that? LaurieA
Using Poser since 2002. Currently at Version 11.1 - Win 10.
Ah.. I tried to run it from Poser L and it worked :o)
FREEBIES! | My Gallery | My Store | My FB | Tumblr |
You just can't put the words "Poserites" and "happy" in the same sentence - didn't you know that? LaurieA
Using Poser since 2002. Currently at Version 11.1 - Win 10.
Except... That the PIL installer now crashes when I try to run it :-( It does find the python version in the Poser folder, but... It is the PIL 1.1.4, meant for Python 2.2. WinXP Home, if that makes any difference...
FREEBIES! | My Gallery | My Store | My FB | Tumblr |
You just can't put the words "Poserites" and "happy" in the same sentence - didn't you know that? LaurieA
Using Poser since 2002. Currently at Version 11.1 - Win 10.
Yes, when I registered it, it said "Python 2.2 now registered" But the installer gets to where it should start installing and nothing hapens. Then if/when I click "next" once more, it crashes :o(
FREEBIES! | My Gallery | My Store | My FB | Tumblr |
You just can't put the words "Poserites" and "happy" in the same sentence - didn't you know that? LaurieA
Using Poser since 2002. Currently at Version 11.1 - Win 10.
Attached Link: http://www.keindesign.de/stefan/poser/scripts/register.py
here's the link to the P5 version of the registration script. Run that from Poser.The registration worked. I installed the PIL 1.1.4 but I still get this error
Traceback (most recent call last):
File "", line 82, in ?
File "", line 37, in write
File "D:Poser5RuntimePythonPILImage.py", line 405, in convert
self.load()
File "D:Poser5RuntimePythonPILImageFile.py", line 125, in load
self.load_prepare()
File "D:Poser5RuntimePythonPILImageFile.py", line 175, in load_prepare
self.im = Image.core.new(self.mode, self.size)
File "D:Poser5RuntimePythonPILImage.py", line 43, in getattr
raise ImportError, "The _imaging C module is not installed"
ImportError: The _imaging C module is not installed"
I looked at the path D:Poser5RuntimePythonPILImage.py and I have an Image.py file in that directory. It is dated from 23. Oktober 2000.
Every
organisation rests upon a mountain of secrets ~ Julian
Assange
Yep, and I found the error. I had an idea and just ran the image.py in Poser and it told me that there is a python15.dll missing. I copied it over from ProPack to P5 and now it works ... nearly. Got another error message telling me bad form. But it created a nice mtl file with nearly all materials listed except two or three. I think it looked for the python15.dll because I had installed the shockwave thingy for ProPrack into P5 before. I have installed the PIL 1.1.4. for Python 2.2 yesterday and registered it but anyway ... maybe best is I deinstall everything and try all over.
Every
organisation rests upon a mountain of secrets ~ Julian
Assange
Yes, you shouldn't have installed the Shockwave thing on P5 - it's not compatible with it. You won't need to do a full wipe - you could install P5 to a new directory (don't forget to apply the SRs) and then copy the runtime/python folder to your old runtime. That should give you a clean Python runtime in your existing Poser setup.
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.
Someone who has all these three tools, I'd like you to try something out for me. Post in this thread or IM me. Thanks.