Using Poser Frames without recipes (legacy mode)

The settings are hard coded at the top of the script file and are written as Javascript variable declarations, like this:

var fancy = true;

It’s important to keep this format when you make changes. Make sure the = or the ; doesn’t accidentally get deleted when you change a value. All variables must be declared, so make sure you don’t accidentally delete any lines.

To begin using the script without recipes you need to change the setting legacy to this:

var legacy = true;

If you want the script to save the images after it’s run change the setting save to this:

var save = true;

The hard coded settings are the same as the ones used in a recipe above. There are also five additional settings available in the script file:

  1. feather_factor_35mm: How much feathering of the border you like for 35mm. The lower value, the more feathering. Preset value is 1200.
  2. feather_factor_645: How much feathering of the border you like for 645. The lower value, the more feathering. Preset value is 1800.
  3. feather_factor_67_square: How much feathering of the border you like for square and 67. The lower value, the more feathering. Preset value is 2400.
  4. feather_factor_45: How much feathering of the border you like for 4x5. The lower value, the more feathering. Preset value is 5400.
  5. mask_flip_probaility: The probability of the scanner mask being rotated 180 degrees. Initially set to 20 out of 100.

These five settings are always active, even when the script is run in recipe mode.

Note that the setting movement_direction, also used in recipes, must be enclosed with quotation marks in the script file, like this:

var movement_direction = "random";