Mantis 6343: Turn a prim to flexy to OFF don't work llSetPrimParams

Correction so that scripts can turn Flexi off as well as on.
0.7.5-pf-bulletsim
Talun 2013-01-26 00:34:42 +00:00 committed by Justin Clark-Casey (justincc)
parent 319069d193
commit d1320993a4
1 changed files with 10 additions and 3 deletions

View File

@ -1668,10 +1668,17 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
part.Shape.FlexiForceX = (float)Force.x;
part.Shape.FlexiForceY = (float)Force.y;
part.Shape.FlexiForceZ = (float)Force.z;
part.Shape.PathCurve = 0x80;
part.ParentGroup.HasGroupChanged = true;
part.ScheduleFullUpdate();
part.Shape.PathCurve = (byte)Extrusion.Flexible;
}
else
{
// Other values not set, they do not seem to be sent to the viewer
// Setting PathCurve appears to be what actually toggles the check box and turns Flexi on and off
part.Shape.PathCurve = (byte)Extrusion.Straight;
part.Shape.FlexiEntry = false;
}
part.ParentGroup.HasGroupChanged = true;
part.ScheduleFullUpdate();
}
/// <summary>