04-17-2006 03:25
Steps to reproduce the bug: Create 2 prims, make 1 flexible, link them (flex prim as root), and put a simple timed movement script in the root:
CODE
default
{
state_entry()
{
llSetTimerEvent(1);
}

timer()
{
llSetPos(llGetPos()+<0,0,1>);
llSleep(1);
llSetPos(llGetPos()+<0,0,-1>);
llSleep(1);
}
}
Observed 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.

Expected results: Flex prims shouldn't flash when moved.