mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
Some progress on 4 of the llParticleSystem members
that needed to be cast to libsecondlife.LLColor.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user