In order to change the value of one parameter using
llSetPrimitiveParams
, the script must specify values for
all
of the parameters for the given flag. With the addition of PBR, which can be changed in child links
only
with this function, this has never been more cumbersome.
I propose a new constant be added to preserve the existing value for the position it is placed in. A "NO_CHANGE" or "KEEP" constant could replace known or unknown values in order to preserve them while changing other values following a flag. Take this for example:
llSetLinkPrimitiveParamsFast(2, [PRIM_TEXTURE, 0, "12345678-1234-1234-1234-123456789012", <1,1,0>, <0,0,0>, 0]);
If we don't know the texture on face 0 of link 2, then we would need to add a second script in that link to change any of the above individual parameters, or we could have something like this:
llSetLinkPrimitiveParamsFast(2, [PRIM_TEXTURE, 0, NO_CHANGE, <1,1,0>, <0,0,0>, 0]);
Because some parameters require other parameters to be defined when changed,
llSetPrimitiveParams
should assume defaults (or revert to previously used values, if available) when not provided or currently in use, such as
mask_cutoff
when PRIM_ALPHA_MODE_MASK is used.
This feature would provide a significant quality of life improvement to scripters working with objects that they don't have all of the source items for.