Added a call to m_host.SendFullUpdateToAllClients().

Thank you to Alondria for suggesting this solution
to getting kan-ed#2 to work with the llSetScale call.
afrisby
Charles Krinke 2007-12-09 23:48:27 +00:00
parent fbaa8bc9bd
commit be5d8811be
1 changed files with 5 additions and 4 deletions

View File

@ -434,6 +434,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
tmp.Y = (float) scale.Y; tmp.Y = (float) scale.Y;
tmp.Z = (float) scale.Z; tmp.Z = (float) scale.Z;
m_host.Scale = tmp; m_host.Scale = tmp;
m_host.SendFullUpdateToAllClients();
return; return;
} }
@ -1609,7 +1610,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
break; break;
case (int) PrimitiveRule.PSYS_PART_START_ALPHA: case (int) PrimitiveRule.PSYS_PART_START_ALPHA:
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; //what is the cast? prules.PartStartColor = (LSL_Types.Vec)rules[i + 1];
break; break;
case (int) PrimitiveRule.PSYS_PART_END_COLOR: case (int) PrimitiveRule.PSYS_PART_END_COLOR:
@ -1617,15 +1618,15 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
break; break;
case (int) PrimitiveRule.PSYS_PART_END_ALPHA: case (int) PrimitiveRule.PSYS_PART_END_ALPHA:
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
break; break;
case (int) PrimitiveRule.PSYS_PART_START_SCALE: case (int) PrimitiveRule.PSYS_PART_START_SCALE:
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
break; break;
case (int) PrimitiveRule.PSYS_PART_END_SCALE: case (int) PrimitiveRule.PSYS_PART_END_SCALE:
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
break; break;
case (int) PrimitiveRule.PSYS_PART_MAX_AGE: case (int) PrimitiveRule.PSYS_PART_MAX_AGE: