aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LSL.lua
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-04 23:02:04 +1000
committerDavid Walter Seikel2012-02-04 23:02:04 +1000
commit1ba092a0c394ac5cf5d4d8ab1ea280b29ff9742d (patch)
tree52c1ff36d3e2cdc0507cf5529f33031271017c9b /LuaSL/src/LSL.lua
parentComment new problem - dot operator not mixing too well with unplain assignments. (diff)
downloadSledjHamr-1ba092a0c394ac5cf5d4d8ab1ea280b29ff9742d.zip
SledjHamr-1ba092a0c394ac5cf5d4d8ab1ea280b29ff9742d.tar.gz
SledjHamr-1ba092a0c394ac5cf5d4d8ab1ea280b29ff9742d.tar.bz2
SledjHamr-1ba092a0c394ac5cf5d4d8ab1ea280b29ff9742d.tar.xz
Fix up rotation and vector subscripts in expressions and non plain assignments.
Diffstat (limited to 'LuaSL/src/LSL.lua')
-rw-r--r--LuaSL/src/LSL.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LSL.lua b/LuaSL/src/LSL.lua
index 1e7cc13..9b52d8c 100644
--- a/LuaSL/src/LSL.lua
+++ b/LuaSL/src/LSL.lua
@@ -186,8 +186,8 @@ LSL.TYPE_INVALID = 0;
186LSL.NULL_KEY = "00000000-0000-0000-0000-000000000000"; 186LSL.NULL_KEY = "00000000-0000-0000-0000-000000000000";
187LSL.EOF = "\n\n\n"; 187LSL.EOF = "\n\n\n";
188 188
189LSL.ZERO_ROTATION = {0.0, 0.0, 0.0, 1.0}; 189LSL.ZERO_ROTATION = {x=0.0, y=0.0, z=0.0, s=1.0};
190LSL.ZERO_VECTOR = {0.0, 0.0, 0.0}; 190LSL.ZERO_VECTOR = {x=0.0, y=0.0, z=0.0};
191 191
192-- TODO - Temporary dummy variables to got vector and rotation thingies to work for now. 192-- TODO - Temporary dummy variables to got vector and rotation thingies to work for now.
193 193