pitklad opened this issue on Mar 29, 2007 ยท 13 posts
EnglishBob posted Thu, 29 March 2007 at 4:26 PM
In case anybody was wondering, here's the modification to make the magnet zone appear in wireframe, while the magnet and base are outlined: scene = poser.Scene() def doIt(): for actor in scene.Actors(): if actor.IsDeformer() or actor.IsBase(): actor.SetDisplayStyle(poser.kDisplayCodeEDGESONLY) if actor.IsZone(): actor.SetDisplayStyle(poser.kDisplayCodeWIREFRAME) scene.DrawAll() doIt() I find this makes it easier to adjust the zone's shape and position in 3D. Hope you don't mind me hacking your intellectual property, Phil. ;)