Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2024 Dec 13 7:48 am)
if you save the figure to your library, you should be able to do a search and replace with wordpad or notepad++ on the .cr2.
i imagine, you'll need to change it on clothes it's wearing too.
you could save the figure with it's clothes to a single cr2.
♥ My Gallery Albums ♥ My YT ♥ Party in the CarrarArtists Forum ♪♪♪ 10 years of Carrara forum ♥ My FreeStuff
Thank you Misty Lara Princess. :-)
I actually have done that before, and it certainly works, but I'd love to be able to make these broad sweeping changes on the fly while working on my scene, when the need arises.
I really have no idea what causes it, but sometimes sensitivity settings in Poser get kind of weird. One minute a .5 might be fine, then a little later it needs to be lowered to .1.
The only thing I know for sure is scene scale and figure scale male a huge difference in this sort of thing.
I've been using Poser for several years and I keep telling myself one of these years I'm gonna take some time and learn Python scripting and do these things myself... but, well it's almost 2014, maybe that will be the year. :D
Then again, I don't even know if such a thing is possible within Poser with Python. It seems to me it should be, but I just don't know.
Quote -
This might work , I have not tested it. works on current figure in scenenewval is the sensitivity value desired.
download file and rename to a py extension, run from anywhere using File>run python
Wow thank you!
I wish I had seen this earlier when I still had time left today.
I'll dig into it some time this weekend and get back to you but I wanted to make sure I got a "thank you" in here on time. :D
I can amend it to do anything conformed or parented to the current figure or even everything in the scene.
A prop is just an actor so you just need to change the bit that loops through actors.
like this
import poser
newval = 0.1
xt = poser.kParmCodeXTRAN
yt = poser.kParmCodeYTRAN
zt = poser.kParmCodeZTRAN
xr = poser.kParmCodeXROT
yr = poser.kParmCodeYROT
zr = poser.kParmCodeZROT
myparm = [xt,yt,zt,xr,yr,zr]
act = poser.Scene().CurrentActor()
print act.Name()
for p in myparm:
cp = act.ParameterByCode(p)
cp.SetSensitivity(newval)
print "Done"
this will crash if the current actor does not have tran and rotate parameters.
Quote - I can amend it to do anything conformed or parented to the current figure or even everything in the scene.
A prop is just an actor so you just need to change the bit that loops through actors.
like this
script set sensitivity for prop
import poser
newval = 0.1
xt = poser.kParmCodeXTRAN
yt = poser.kParmCodeYTRAN
zt = poser.kParmCodeZTRAN
xr = poser.kParmCodeXROT
yr = poser.kParmCodeYROT
zr = poser.kParmCodeZROT
myparm = [xt,yt,zt,xr,yr,zr]
act = poser.Scene().CurrentActor()
print act.Name()
for p in myparm:
cp = act.ParameterByCode(p)
cp.SetSensitivity(newval)
print "Done"this will crash if the current actor does not have tran and rotate parameters.
Thanks again man, very very useful! :D
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 couldn't think of a good descriptive short title for this thread. ;-)
Basically I'm hoping someone could point me to a script that can change all the slider sensitivity values in a figure, the X, Y and Z rotate and translate values that is, to a number I input, for all the body parts in a figure at once.
I scale my Poser people up and down all the time depending on my needs and when you have a Poser figure at 1000% size, suddenly that default 1.000 sensitivity on a parameter slider is way too much. .1 is more like it, but obviously it takes a good while to change them all manually, not to mention changing them to something else when I change scale again.
I'm kind of doubting such a script exists, but I figue it's worth a shot. Better yet, some multi-purpose utility that can change valuse in a figure en mass could be very useful.
But if there is something like that out there, free or otherwise, I need it.
Thanks. :D