From fbaa8bc9bdc14703b844ab630f7ad339eccb00ed Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sun, 9 Dec 2007 23:04:11 +0000 Subject: Some progress on 4 of the llParticleSystem members that needed to be cast to libsecondlife.LLColor. --- .../DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs index 8f7a8ff..00775ec 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs @@ -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: -- cgit v1.1