diff options
Diffstat (limited to '')
-rw-r--r-- | docs/README.LuaSL | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/docs/README.LuaSL b/docs/README.LuaSL index f278c59..7a6c7a2 100644 --- a/docs/README.LuaSL +++ b/docs/README.LuaSL | |||
@@ -280,18 +280,21 @@ Extantz fires up love, which in turn fires up LuaSL. Love then | |||
280 | basically does what LuaSL_test does, sending it scripts to compile and | 280 | basically does what LuaSL_test does, sending it scripts to compile and |
281 | run from test sim/objects. Except for the timed fake events. | 281 | run from test sim/objects. Except for the timed fake events. |
282 | 282 | ||
283 | Generate touch events when user touchs the 3D cube. It will pretend to be | ||
284 | the "onefang's test bed" object. Fake up llDetected* stuff. | ||
285 | |||
286 | extantz -> love -> LuaSL | ||
287 | |||
288 | |||
289 | Respond to llSay() and friends by putting them in purkle's history box. | 283 | Respond to llSay() and friends by putting them in purkle's history box. |
290 | With time stamps. | 284 | With time stamps. |
291 | 285 | ||
286 | SID.llSay(123, "foo") | ||
292 | LuaSL -> love -> extantz | 287 | LuaSL -> love -> extantz |
293 | 288 | ||
294 | 289 | ||
290 | Generate touch events when user touchs the 3D cube. It will pretend to be | ||
291 | the "onefang's test bed" object. Fake up llDetected* stuff. | ||
292 | |||
293 | CUBE_UUID.events.detected*(USER_UUID) | ||
294 | CUBE_UUID.events.touch_start(1) | ||
295 | extantz -> love -> LuaSL | ||
296 | |||
297 | |||
295 | Fake llGetOwner(), llGetFreeMemory(), and llSameGroup(). | 298 | Fake llGetOwner(), llGetFreeMemory(), and llSameGroup(). |
296 | 299 | ||
297 | LuaSL -> love -> LuaSL | 300 | LuaSL -> love -> LuaSL |
@@ -334,5 +337,6 @@ LuaSL (maybe with a round trip to love as well) | |||
334 | 337 | ||
335 | Implement llListen(), llDialog() and generate listen() events. | 338 | Implement llListen(), llDialog() and generate listen() events. |
336 | 339 | ||
340 | SID.llDialog(USER_UUID, "My menu", arseBackwardsMenuList, 456) | ||
341 | USER_UUID.llRegionSay(456, "button text") | ||
337 | LuaSL -> love -> extantz -> love -> LuaSL | 342 | LuaSL -> love -> extantz -> love -> LuaSL |
338 | |||