CODE
defaultObserved results: The child flex prim flashes (disappears/reappears) each time the object's position changes. Removing the parent prim's flex attribute fixes it, but the child prim starts flashing again if its shape is changed in any way.
{
state_entry()
{
llSetTimerEvent(1);
}
timer()
{
llSetPos(llGetPos()+<0,0,1>);
llSleep(1);
llSetPos(llGetPos()+<0,0,-1>);
llSleep(1);
}
}
Expected results: Flex prims shouldn't flash when moved.