diff options
author | Charles Krinke | 2007-12-09 23:04:11 +0000 |
---|---|---|
committer | Charles Krinke | 2007-12-09 23:04:11 +0000 |
commit | fbaa8bc9bdc14703b844ab630f7ad339eccb00ed (patch) | |
tree | 17ee36bd46d34ab606b40fe9c133ea924178b44e /OpenSim/Region/ScriptEngine/DotNetEngine | |
parent | "list" becomes "List" in LSL2CSConverter and (f,3) becomes (f,0) in llRound. ... (diff) | |
download | opensim-SC_OLD-fbaa8bc9bdc14703b844ab630f7ad339eccb00ed.zip opensim-SC_OLD-fbaa8bc9bdc14703b844ab630f7ad339eccb00ed.tar.gz opensim-SC_OLD-fbaa8bc9bdc14703b844ab630f7ad339eccb00ed.tar.bz2 opensim-SC_OLD-fbaa8bc9bdc14703b844ab630f7ad339eccb00ed.tar.xz |
Some progress on 4 of the llParticleSystem members
that needed to be cast to libsecondlife.LLColor.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 8 |
1 files changed, 4 insertions, 4 deletions
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 | |||
1609 | break; | 1609 | break; |
1610 | 1610 | ||
1611 | case (int) PrimitiveRule.PSYS_PART_START_ALPHA: | 1611 | case (int) PrimitiveRule.PSYS_PART_START_ALPHA: |
1612 | //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1]; | 1612 | prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; |
1613 | break; | 1613 | break; |
1614 | 1614 | ||
1615 | case (int) PrimitiveRule.PSYS_PART_END_COLOR: | 1615 | case (int) PrimitiveRule.PSYS_PART_END_COLOR: |
@@ -1617,15 +1617,15 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler | |||
1617 | break; | 1617 | break; |
1618 | 1618 | ||
1619 | case (int) PrimitiveRule.PSYS_PART_END_ALPHA: | 1619 | case (int) PrimitiveRule.PSYS_PART_END_ALPHA: |
1620 | //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1]; | 1620 | prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; |
1621 | break; | 1621 | break; |
1622 | 1622 | ||
1623 | case (int) PrimitiveRule.PSYS_PART_START_SCALE: | 1623 | case (int) PrimitiveRule.PSYS_PART_START_SCALE: |
1624 | //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1]; | 1624 | prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; |
1625 | break; | 1625 | break; |
1626 | 1626 | ||
1627 | case (int) PrimitiveRule.PSYS_PART_END_SCALE: | 1627 | case (int) PrimitiveRule.PSYS_PART_END_SCALE: |
1628 | //what is the cast? prules.PartStartColor = (LLColor)rules[i + 1]; | 1628 | prules.PartStartColor = (libsecondlife.LLColor)rules[i + 1]; |
1629 | break; | 1629 | break; |
1630 | 1630 | ||
1631 | case (int) PrimitiveRule.PSYS_PART_MAX_AGE: | 1631 | case (int) PrimitiveRule.PSYS_PART_MAX_AGE: |