Wed, Feb 5, 11:59 PM CST

Renderosity Forums / Poser - OFFICIAL



Welcome to the Poser - OFFICIAL Forum

Forum Coordinators: RedPhantom

Poser - OFFICIAL F.A.Q (Last Updated: 2025 Feb 05 5:33 pm)



Subject: Custom UI possible?


3D-Mobster ( ) posted Sat, 02 February 2019 at 9:36 AM ยท edited Tue, 21 January 2025 at 11:42 AM

Does anyone making scripts for Poser know if its possible to create custom changes to the UI and get access to values that you can't currently manipulate.with ease?

The idea is to make posing easier, so when you pose lets say fingers it consist of 3 bones each with a sensitivity value of 1. As you move closer to the hand the sensitivity will have a much larger effect on the tip of the finger whenever you bend it, which can make posing a bit difficult. So would it be possible to make a sensitivity slider which are available for a given bone whenever you select it, so instead of having to go in and edit it every time, you could just scroll the sensitivity dial up or down on the fly?

Also would it be possible to add a custom box that allow you to quickly turn on/off IK? Without having to go into the menu all the time, so basically just a checkbox sort of thing?

Anyone know it that is possible and if so, would like to make such thing? :D


willyb53 ( ) posted Sat, 02 February 2019 at 12:16 PM

simple IKoff

import poser

scene = poser.Scene() actor = scene.CurrentActor() figure = actor.ItsFigure() mylist = figure.IkNames() figure.SetIkStatus(0,0) figure.SetIkStatus(1,0) figure.SetIkStatus(2,0) figure.SetIkStatus(3,0)ikoff.jpg

People that know everything by definition can not learn anything


SamTherapy ( ) posted Sat, 02 February 2019 at 12:16 PM

If you enable Wardrobe Wizard you'll find a IK switch in there.

Dunno about the other stuff though.

Coppula eam se non posit acceptera jocularum.

My Store

My Gallery


willyb53 ( ) posted Sat, 02 February 2019 at 12:18 PM

script exploaded :D

import poser

scene = poser.Scene()

actor = scene.CurrentActor()

figure = actor.ItsFigure()

mylist = figure.IkNames()

figure.SetIkStatus(0,0)

figure.SetIkStatus(1,0)

figure.SetIkStatus(2,0)

figure.SetIkStatus(3,0)

People that know everything by definition can not learn anything


3D-Mobster ( ) posted Sat, 02 February 2019 at 1:56 PM

Cool thanks both

Now if you could only control sensitivity as well.:D


Privacy Notice

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.