Some progress on 4 of the llParticleSystem members

that needed to be cast to libsecondlife.LLColor.
afrisby
Charles Krinke 2007-12-09 23:04:11 +00:00
parent 2742be6675
commit fbaa8bc9bd
1 changed files with 4 additions and 4 deletions

View File

@ -1609,7 +1609,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
break;
case (int) PrimitiveRule.PSYS_PART_START_ALPHA:
//what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1];
break;
case (int) PrimitiveRule.PSYS_PART_END_COLOR:
@ -1617,15 +1617,15 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
break;
case (int) PrimitiveRule.PSYS_PART_END_ALPHA:
//what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1];
break;
case (int) PrimitiveRule.PSYS_PART_START_SCALE:
//what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1];
break;
case (int) PrimitiveRule.PSYS_PART_END_SCALE:
//what is the cast? prules.PartStartColor = (LLColor)rules[i + 1];
prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1];
break;
case (int) PrimitiveRule.PSYS_PART_MAX_AGE: