mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
Another attempt at fixing XEngine llSetPrimitiveParams: Make it accept
LSLIntegers in lists, and attempt to address the scope issue on TRUE and FALSE with readonly static linkage
This commit is contained in:
@@ -35,8 +35,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
public partial class ScriptBaseClass : MarshalByRefObject
|
||||
{
|
||||
// LSL CONSTANTS
|
||||
public LSLInteger TRUE = new LSLInteger(1);
|
||||
public LSLInteger FALSE = new LSLInteger(0);
|
||||
public static readonly LSLInteger TRUE = new LSLInteger(1);
|
||||
public static readonly LSLInteger FALSE = new LSLInteger(0);
|
||||
|
||||
public const int STATUS_PHYSICS = 1;
|
||||
public const int STATUS_ROTATE_X = 2;
|
||||
|
||||
Reference in New Issue
Block a user