forked from secondlife/lsl-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslua_default.docs.json
More file actions
7976 lines (7976 loc) · 517 KB
/
slua_default.docs.json
File metadata and controls
7976 lines (7976 loc) · 517 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@sl-slua/global/dangerouslyexecuterequiredmodule": {
"documentation": "Dangerously executes a required module function"
},
"@sl-slua/global/touuid": {
"documentation": "Creates a new uuid from a string, buffer, or existing uuid. Returns nil if the string is not a valid UUID, or the the buffer is shorter than 16 bytes."
},
"@sl-slua/global/tovector": {
"documentation": "Converts a string to a vector, returns nil if invalid"
},
"@sl-slua/global/toquaternion": {
"documentation": "Converts a string to a quaternion, returns nil if invalid"
},
"@sl-slua/global/torotation": {
"documentation": "Converts a string to a rotation (quaternion), returns nil if invalid"
},
"@sl-slua/global/bit32": {
"documentation": "Bitwise operations library.",
"learn_more_link": "https://luau.org/library/#bit32-library"
},
"@sl-slua/global/bit32.arshift": {
"documentation": "Shifts n by i bits to the right. If i is negative, a left shift is performed.<br>Does an arithmetic shift: The most significant bit of n is propagated during the shift.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#arshift"
},
"@sl-slua/global/bit32.band": {
"documentation": "Performs a bitwise AND operation on input numbers.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#band"
},
"@sl-slua/global/bit32.bnot": {
"documentation": "Returns the bitwise negation of the input number.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#bnot"
},
"@sl-slua/global/bit32.bor": {
"documentation": "Performs a bitwise OR operation on input numbers.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#bor"
},
"@sl-slua/global/bit32.bxor": {
"documentation": "Performs a bitwise XOR operation on input numbers.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#bxor"
},
"@sl-slua/global/bit32.btest": {
"documentation": "Performs a bitwise AND operation on input numbers.<br>Returns true if result is non-zero.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#btest"
},
"@sl-slua/global/bit32.extract": {
"documentation": "Extracts bits from n at position field with width",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#extract"
},
"@sl-slua/global/bit32.lrotate": {
"documentation": "Rotates n by i bits to the left. If i is negative, a right rotate is performed.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#lrotate"
},
"@sl-slua/global/bit32.lshift": {
"documentation": "Shifts n by i bits to the left. If i is negative, a right shift is performed.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#lshift"
},
"@sl-slua/global/bit32.replace": {
"documentation": "Replaces bits in n at position field with width using value v",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#replace"
},
"@sl-slua/global/bit32.rrotate": {
"documentation": "Rotates n by i bits to the right. If i is negative, a left rotate is performed.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#rrotate"
},
"@sl-slua/global/bit32.rshift": {
"documentation": "Shifts n by i bits to the right. If i is negative, a left shift is performed.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#rshift"
},
"@sl-slua/global/bit32.s32": {
"documentation": "Wrap this number from float64 range to signed int32 range and truncate to integer. Makes integer arithmetic compatable with LSL.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#s32"
},
"@sl-slua/global/bit32.smul": {
"documentation": "Multiplies two signed 32-bit integers. Returns the result as a signed 32-bit integer, wrapping as necessary. Avoids precision loss ascociated with float64 multiplication. Compatible with LSL integer multiplication.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#smul"
},
"@sl-slua/global/bit32.countlz": {
"documentation": "Count leading zeros",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#countlz"
},
"@sl-slua/global/bit32.countrz": {
"documentation": "Count trailing zeros",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#countrz"
},
"@sl-slua/global/bit32.byteswap": {
"documentation": "Swap byte order",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/bit32#byteswap"
},
"@sl-slua/global/buffer": {
"documentation": "Buffer manipulation library for binary data.",
"learn_more_link": "https://luau.org/library/#buffer-library"
},
"@sl-slua/global/buffer.create": {
"documentation": "Creates a buffer of the requested size with all bytes initialized to 0.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#create"
},
"@sl-slua/global/buffer.fromstring": {
"documentation": "Creates a buffer initialized to the contents of the string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#fromstring"
},
"@sl-slua/global/buffer.tostring": {
"documentation": "Returns the buffer data as a string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#tostring"
},
"@sl-slua/global/buffer.readi8": {
"documentation": "Reads a signed 8-bit integer from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readi8"
},
"@sl-slua/global/buffer.readu8": {
"documentation": "Reads an unsigned 8-bit integer from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readu8"
},
"@sl-slua/global/buffer.readi16": {
"documentation": "Reads a signed 16-bit integer from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readi16"
},
"@sl-slua/global/buffer.readu16": {
"documentation": "Reads an unsigned 16-bit integer from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readu16"
},
"@sl-slua/global/buffer.readi32": {
"documentation": "Reads a signed 32-bit integer from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readi32"
},
"@sl-slua/global/buffer.readu32": {
"documentation": "Reads an unsigned 32-bit integer from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readu32"
},
"@sl-slua/global/buffer.readf32": {
"documentation": "Reads a 32-bit floating-point number from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readf32"
},
"@sl-slua/global/buffer.readf64": {
"documentation": "Reads a 64-bit floating-point number from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readf64"
},
"@sl-slua/global/buffer.writei8": {
"documentation": "Writes a signed 8-bit integer to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writei8"
},
"@sl-slua/global/buffer.writeu8": {
"documentation": "Writes an unsigned 8-bit integer to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writeu8"
},
"@sl-slua/global/buffer.writei16": {
"documentation": "Writes a signed 16-bit integer to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writei16"
},
"@sl-slua/global/buffer.writeu16": {
"documentation": "Writes an unsigned 16-bit integer to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writeu16"
},
"@sl-slua/global/buffer.writei32": {
"documentation": "Writes a signed 32-bit integer to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writei32"
},
"@sl-slua/global/buffer.writeu32": {
"documentation": "Writes an unsigned 32-bit integer to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writeu32"
},
"@sl-slua/global/buffer.writef32": {
"documentation": "Writes a 32-bit floating-point number to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writef32"
},
"@sl-slua/global/buffer.writef64": {
"documentation": "Writes a 64-bit floating-point number to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writef64"
},
"@sl-slua/global/buffer.readstring": {
"documentation": "Reads a string of the given length from the buffer at the specified offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readstring"
},
"@sl-slua/global/buffer.writestring": {
"documentation": "Writes data from a string into the buffer at the specified offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writestring"
},
"@sl-slua/global/buffer.len": {
"documentation": "Returns the size of the buffer in bytes.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#len"
},
"@sl-slua/global/buffer.copy": {
"documentation": "Copies bytes from the source buffer into the target buffer.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#copy"
},
"@sl-slua/global/buffer.fill": {
"documentation": "Fills the buffer with the specified value starting at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#fill"
},
"@sl-slua/global/buffer.readbits": {
"documentation": "Reads up to 32 bits from the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#readbits"
},
"@sl-slua/global/buffer.writebits": {
"documentation": "Writes up to 32 bits to the buffer at the given offset.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/buffer#writebits"
},
"@sl-slua/global/coroutine": {
"documentation": "Coroutine manipulation library.",
"learn_more_link": "https://luau.org/library/#coroutine-library"
},
"@sl-slua/global/coroutine.create": {
"documentation": "Returns a new coroutine that, when resumed, will run function f.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#create"
},
"@sl-slua/global/coroutine.resume": {
"documentation": "Resumes a coroutine, returning true and results if successful, or false and an error.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#resume"
},
"@sl-slua/global/coroutine.running": {
"documentation": "Returns the currently running coroutine, or nil if called from in the main coroutine.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#running"
},
"@sl-slua/global/coroutine.status": {
"documentation": "Returns the status of the coroutine: \"running\", \"suspended\", \"normal\", or \"dead\".",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#status"
},
"@sl-slua/global/coroutine.wrap": {
"documentation": "Creates a coroutine and returns a function that resumes it.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#wrap"
},
"@sl-slua/global/coroutine.yield": {
"documentation": "Yields the current coroutine, passing arguments to the resuming code.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#yield"
},
"@sl-slua/global/coroutine.isyieldable": {
"documentation": "Returns true if the currently running coroutine can yield.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#isyieldable"
},
"@sl-slua/global/coroutine.close": {
"documentation": "Closes a coroutine, returning true if successful or false and an error.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/coroutine#close"
},
"@sl-slua/global/debug": {
"documentation": "Debug library for introspection.",
"learn_more_link": "https://luau.org/library/#debug-library"
},
"@sl-slua/global/debug.info": {
"documentation": "Returns information about a stack frame or function based on specified format.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/debug#info"
},
"@sl-slua/global/debug.traceback": {
"documentation": "Returns a human-readable call stack starting from the specified level.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/debug#traceback"
},
"@sl-slua/global/llbase64": {
"documentation": "Base64 encoding/decoding library."
},
"@sl-slua/global/llbase64.encode": {
"documentation": "Encodes a string or buffer to base64"
},
"@sl-slua/global/llbase64.decode": {
"documentation": "Decodes a base64 string to a string, or buffer if asBuffer is true. The output is truncated at the first decoding error."
},
"@sl-slua/global/lljson": {
"documentation": "JSON encoding/decoding library for Second Life.",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.null": {
"documentation": "A constant to pass for null to json encode",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.empty_array_mt": {
"documentation": "Value: {}<br>Metatable for declaring table as an empty array for json encode",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.array_mt": {
"documentation": "Value: {}<br>Metatable for declaring table as an array for json encode",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.empty_array": {
"documentation": "A constant to pass for an empty array to json encode",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson._NAME": {
"documentation": "Value: \"lljson\"<br>Name of the lljson library",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson._VERSION": {
"documentation": "Value: \"2.1.0.11\"<br>Version of the lljson library",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.encode": {
"documentation": "Encodes a Lua value as JSON. Raises an error if value contains unsupported types.",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.decode": {
"documentation": "Decodes a JSON string to a Lua value. Raises an error if JSON is invalid.",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.slencode": {
"documentation": "Encodes a Lua value as JSON, preserving SL types. Use tight to encode more compactly. Raises an error if value contains unsupported types.",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/lljson.sldecode": {
"documentation": "Decodes a JSON string to a Lua value, preserving SL types. Raises an error if JSON is invalid.",
"learn_more_link": "https://create.secondlife.com/script/learn-slua/json/"
},
"@sl-slua/global/math": {
"documentation": "Mathematical functions library.",
"learn_more_link": "https://luau.org/library/#math-library"
},
"@sl-slua/global/math.pi": {
"documentation": "Value: 3.141592653589793<br>The value of pi",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#pi"
},
"@sl-slua/global/math.huge": {
"documentation": "Value: inf<br>A value larger than any other numeric value (infinity)",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#huge"
},
"@sl-slua/global/math.abs": {
"documentation": "Returns the absolute value of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#abs"
},
"@sl-slua/global/math.acos": {
"documentation": "Returns the arc cosine of n in radians.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#acos"
},
"@sl-slua/global/math.asin": {
"documentation": "Returns the arc sine of n in radians.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#asin"
},
"@sl-slua/global/math.atan": {
"documentation": "Returns the arc tangent of n in radians.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#atan"
},
"@sl-slua/global/math.atan2": {
"documentation": "Returns the arc tangent of y/x in radians, using the signs to determine the quadrant.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#atan2"
},
"@sl-slua/global/math.ceil": {
"documentation": "Returns the smallest integer larger than or equal to n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#ceil"
},
"@sl-slua/global/math.clamp": {
"documentation": "Returns n clamped between min and max.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#clamp"
},
"@sl-slua/global/math.cos": {
"documentation": "Returns the cosine of n (n is in radians).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#cos"
},
"@sl-slua/global/math.cosh": {
"documentation": "Returns the hyperbolic cosine of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#cosh"
},
"@sl-slua/global/math.deg": {
"documentation": "Converts n from radians to degrees.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#deg"
},
"@sl-slua/global/math.exp": {
"documentation": "Returns the base-e exponent of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#exp"
},
"@sl-slua/global/math.floor": {
"documentation": "Returns the largest integer smaller than or equal to n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#floor"
},
"@sl-slua/global/math.fmod": {
"documentation": "Returns the remainder of x modulo y, rounded towards zero.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#fmod"
},
"@sl-slua/global/math.frexp": {
"documentation": "Returns m and e such that n = m * 2^e.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#frexp"
},
"@sl-slua/global/math.ldexp": {
"documentation": "Returns s * 2^e.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#ldexp"
},
"@sl-slua/global/math.lerp": {
"documentation": "Linearly interpolates between a and b using factor t.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#lerp"
},
"@sl-slua/global/math.log": {
"documentation": "Returns the logarithm of n in the given base (default e).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#log"
},
"@sl-slua/global/math.log10": {
"documentation": "Returns the base-10 logarithm of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#log10"
},
"@sl-slua/global/math.map": {
"documentation": "Maps n from input range to output range.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#map"
},
"@sl-slua/global/math.max": {
"documentation": "Returns the maximum value from the given numbers.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#max"
},
"@sl-slua/global/math.min": {
"documentation": "Returns the minimum value from the given numbers.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#min"
},
"@sl-slua/global/math.modf": {
"documentation": "Returns the integer and fractional parts of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#modf"
},
"@sl-slua/global/math.noise": {
"documentation": "Returns Perlin noise value for the point (x, y, z).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#noise"
},
"@sl-slua/global/math.pow": {
"documentation": "Returns base to the power of exponent.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#pow"
},
"@sl-slua/global/math.rad": {
"documentation": "Converts n from degrees to radians.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#rad"
},
"@sl-slua/global/math.random": {
"documentation": "Returns a random number within the given range.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#random"
},
"@sl-slua/global/math.randomseed": {
"documentation": "Sets the seed for the random number generator.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#randomseed"
},
"@sl-slua/global/math.round": {
"documentation": "Rounds n to the nearest integer.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#round"
},
"@sl-slua/global/math.sign": {
"documentation": "Returns -1 if n is negative, 1 if positive, and 0 if zero.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#sign"
},
"@sl-slua/global/math.sin": {
"documentation": "Returns the sine of n (n is in radians).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#sin"
},
"@sl-slua/global/math.sinh": {
"documentation": "Returns the hyperbolic sine of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#sinh"
},
"@sl-slua/global/math.sqrt": {
"documentation": "Returns the square root of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#sqrt"
},
"@sl-slua/global/math.tan": {
"documentation": "Returns the tangent of n (n is in radians).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#tan"
},
"@sl-slua/global/math.tanh": {
"documentation": "Returns the hyperbolic tangent of n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#tanh"
},
"@sl-slua/global/math.isnan": {
"documentation": "Returns true if n is NaN.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#isnan"
},
"@sl-slua/global/math.isinf": {
"documentation": "Returns true if n is infinite.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#isinf"
},
"@sl-slua/global/math.isfinite": {
"documentation": "Returns true if n is finite.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/math#isfinite"
},
"@sl-slua/global/os": {
"documentation": "Operating system facilities library.",
"learn_more_link": "https://luau.org/library/#os-library"
},
"@sl-slua/global/os.clock": {
"documentation": "Returns a high-precision timestamp in seconds for measuring durations.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/os#clock"
},
"@sl-slua/global/os.date": {
"documentation": "Returns a table or string representation of the time based on the provided format.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/os#date"
},
"@sl-slua/global/os.difftime": {
"documentation": "Returns the difference in seconds between two timestamps. Same as a - b.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/os#difftime"
},
"@sl-slua/global/os.time": {
"documentation": "Returns the current Unix timestamp or the timestamp of the given date.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/os#time"
},
"@sl-slua/global/quaternion": {
"documentation": "Creates a new quaternion with the given component values. Alias of quaternion.create."
},
"@sl-slua/global/quaternion.identity": {
"documentation": "Value: quaternion(0, 0, 0, 1)<br>Identity quaternion constant.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.create": {
"documentation": "Creates a new quaternion with the given component values.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.normalize": {
"documentation": "Computes the normalized version (unit quaternion) of the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.magnitude": {
"documentation": "Computes the magnitude of the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.dot": {
"documentation": "Computes the dot product of two quaternions.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.slerp": {
"documentation": "Spherical linear interpolation from a to b using factor t.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.conjugate": {
"documentation": "Computes the conjugate of the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.tofwd": {
"documentation": "Computes the forward vector from the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.toleft": {
"documentation": "Computes the left vector from the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/quaternion.toup": {
"documentation": "Computes the up vector from the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.identity": {
"documentation": "Value: quaternion(0, 0, 0, 1)<br>Identity quaternion constant.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.create": {
"documentation": "Creates a new quaternion with the given component values.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.normalize": {
"documentation": "Computes the normalized version (unit quaternion) of the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.magnitude": {
"documentation": "Computes the magnitude of the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.dot": {
"documentation": "Computes the dot product of two quaternions.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.slerp": {
"documentation": "Spherical linear interpolation from a to b using factor t.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.conjugate": {
"documentation": "Computes the conjugate of the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.tofwd": {
"documentation": "Computes the forward vector from the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.toleft": {
"documentation": "Computes the left vector from the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/rotation.toup": {
"documentation": "Computes the up vector from the quaternion.",
"learn_more_link": "https://suzanna-linn.github.io/slua/moving-rotations"
},
"@sl-slua/global/string": {
"documentation": "String manipulation library.",
"learn_more_link": "https://luau.org/library/#string-library"
},
"@sl-slua/global/string.byte": {
"documentation": "Returns the numeric code of every byte in the input string within the given range.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#byte"
},
"@sl-slua/global/string.char": {
"documentation": "Returns a string containing characters for the given byte values.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#char"
},
"@sl-slua/global/string.find": {
"documentation": "Finds the first instance of the pattern in the string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#find"
},
"@sl-slua/global/string.format": {
"documentation": "Formats input values into a string using printf-style format specifiers.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#format"
},
"@sl-slua/global/string.gmatch": {
"documentation": "Returns an iterator function for pattern matches",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#gmatch"
},
"@sl-slua/global/string.gsub": {
"documentation": "Performs pattern-based substitution in a string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#gsub"
},
"@sl-slua/global/string.len": {
"documentation": "Returns the number of bytes in the string. Identical to #s",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#len"
},
"@sl-slua/global/string.lower": {
"documentation": "Returns a lowercase version of the input string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#lower"
},
"@sl-slua/global/string.match": {
"documentation": "Finds and returns matches for a pattern in the input string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#match"
},
"@sl-slua/global/string.pack": {
"documentation": "Packs values into a binary string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#pack"
},
"@sl-slua/global/string.packsize": {
"documentation": "Returns the size of a packed string for the given format.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#packsize"
},
"@sl-slua/global/string.rep": {
"documentation": "Returns the input string repeated a given number of times.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#rep"
},
"@sl-slua/global/string.reverse": {
"documentation": "Returns the input string with bytes in reverse order.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#reverse"
},
"@sl-slua/global/string.split": {
"documentation": "Splits a string by separator. Returns a list of substrings.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#split"
},
"@sl-slua/global/string.sub": {
"documentation": "Returns a substring from the given range.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#sub"
},
"@sl-slua/global/string.unpack": {
"documentation": "Decodes a binary string using a pack format.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#unpack"
},
"@sl-slua/global/string.upper": {
"documentation": "Returns an uppercase version of the input string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/string#upper"
},
"@sl-slua/global/table": {
"documentation": "Table manipulation library. Tables are collections of key-value pairs.",
"learn_more_link": "https://luau.org/library/#table-library"
},
"@sl-slua/global/table.concat": {
"documentation": "Joins an array of strings into one string, with an optional separator.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#concat"
},
"@sl-slua/global/table.foreach": {
"documentation": "Iterates over all key-value pairs in the table (deprecated).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#foreach"
},
"@sl-slua/global/table.foreachi": {
"documentation": "Iterates over all index-value pairs in the array (deprecated).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#foreachi"
},
"@sl-slua/global/table.getn": {
"documentation": "Returns the length of an array (deprecated; use # instead).",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#getn"
},
"@sl-slua/global/table.maxn": {
"documentation": "Returns the highest numeric key in the table.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#maxn"
},
"@sl-slua/global/table.insert": {
"documentation": "Inserts an element at the specified index, or at the end of the array.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#insert"
},
"@sl-slua/global/table.append": {
"documentation": "Appends one or more an elements to end of the array.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#append"
},
"@sl-slua/global/table.extend": {
"documentation": "Appends all elements from one array to the end of another. Shorthand for table.move(b, 1, #b, #a+1, a)",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#extend"
},
"@sl-slua/global/table.remove": {
"documentation": "Removes and returns the element at the specified index from the array, or from the end of the array.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#remove"
},
"@sl-slua/global/table.sort": {
"documentation": "Sorts an array in place.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#sort"
},
"@sl-slua/global/table.pack": {
"documentation": "Packs multiple arguments into a new array with length field n.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#pack"
},
"@sl-slua/global/table.unpack": {
"documentation": "Unpacks array elements into multiple return values.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#unpack"
},
"@sl-slua/global/table.move": {
"documentation": "Inserts elements [i..j] from src array into dest array at [d].",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#move"
},
"@sl-slua/global/table.create": {
"documentation": "Creates a new table with pre-allocated array capacity, optionally filled.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#create"
},
"@sl-slua/global/table.find": {
"documentation": "Finds the first occurrence of a value in the array and returns its index.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#find"
},
"@sl-slua/global/table.clear": {
"documentation": "Clears all elements from a table while keeping its capacity.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#clear"
},
"@sl-slua/global/table.shrink": {
"documentation": "Reduces the memory usage of the table to the minimum necessary.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#shrink"
},
"@sl-slua/global/table.freeze": {
"documentation": "Freezes a table, making it read-only.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#freeze"
},
"@sl-slua/global/table.isfrozen": {
"documentation": "Returns true if a table is frozen.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#isfrozen"
},
"@sl-slua/global/table.clone": {
"documentation": "Creates a shallow copy of the table.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/table#clone"
},
"@sl-slua/global/utf8": {
"documentation": "UTF-8 support library.",
"learn_more_link": "https://luau.org/library/#utf8-library"
},
"@sl-slua/global/utf8.charpattern": {
"documentation": "Value: \"[\\x00-\\x7F\\xC2-\\xF4][\\x80-\\xBF]*\"<br>Pattern that matches exactly one UTF-8 byte sequence",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/utf8#charpattern"
},
"@sl-slua/global/utf8.char": {
"documentation": "Creates a string from Unicode codepoints.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/utf8#char"
},
"@sl-slua/global/utf8.codes": {
"documentation": "Returns an iterator that produces the byte offset and Unicode codepoint for each character in the string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/utf8#codes"
},
"@sl-slua/global/utf8.codepoint": {
"documentation": "Returns the Unicode codepoints in the specified range of the string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/utf8#codepoint"
},
"@sl-slua/global/utf8.len": {
"documentation": "Returns the number of Unicode codepoints in the specified range of the string, or nil and error index.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/utf8#len"
},
"@sl-slua/global/utf8.offset": {
"documentation": "Returns the byte offset of the nth Unicode codepoint in the string.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/utf8#offset"
},
"@sl-slua/global/uuid": {
"documentation": "Creates a new uuid from a string, buffer, or existing uuid. Throws an error if the string is not a valid UUID, or the the buffer is shorter than 16 bytes. Alias of uuid.create."
},
"@sl-slua/global/uuid.create": {
"documentation": "Creates a new uuid from a string, buffer, or existing uuid. Throws an error if the string is not a valid UUID, or the the buffer is shorter than 16 bytes."
},
"@sl-slua/global/vector": {
"documentation": "Creates a new vector with the given component values. Alias of vector.create.",
"learn_more_link": "https://luau.org/library/#vector-library"
},
"@sl-slua/global/vector.zero": {
"documentation": "Value: vector(0, 0, 0)<br>Constant vector with all components set to 0.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#zero"
},
"@sl-slua/global/vector.one": {
"documentation": "Value: vector(1, 1, 1)<br>Constant vector with all components set to 1.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#one"
},
"@sl-slua/global/vector.create": {
"documentation": "Creates a new vector with the given component values.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#create"
},
"@sl-slua/global/vector.magnitude": {
"documentation": "Computes the magnitude of the vector.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#magnitude"
},
"@sl-slua/global/vector.normalize": {
"documentation": "Computes the normalized version (unit vector) of the vector.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#normalize"
},
"@sl-slua/global/vector.cross": {
"documentation": "Computes the cross product of two vectors.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#cross"
},
"@sl-slua/global/vector.dot": {
"documentation": "Computes the dot product of two vectors.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#dot"
},
"@sl-slua/global/vector.angle": {
"documentation": "Computes the angle between two vectors in radians. The axis, if specified, is used to determine the sign of the angle.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#angle"
},
"@sl-slua/global/vector.floor": {
"documentation": "Applies math.floor to each component of the vector.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#floor"
},
"@sl-slua/global/vector.ceil": {
"documentation": "Applies math.ceil to each component of the vector.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#ceil"
},
"@sl-slua/global/vector.abs": {
"documentation": "Applies math.abs to each component of the vector.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#abs"
},
"@sl-slua/global/vector.sign": {
"documentation": "Applies math.sign to each component of the vector.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#sign"
},
"@sl-slua/global/vector.clamp": {
"documentation": "Clamps each component of the vector between min and max values.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#clamp"
},
"@sl-slua/global/vector.max": {
"documentation": "Applies math.max to each component of the vectors.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#max"
},
"@sl-slua/global/vector.min": {
"documentation": "Applies math.max to each component of the vectors.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#min"
},
"@sl-slua/global/vector.lerp": {
"documentation": "Linearly interpolates between a and b using factor t.",
"learn_more_link": "https://create.roblox.com/docs/reference/engine/libraries/vector#lerp"
},
"@sl-slua/global/ll": {
"documentation": "Library for functions shared between LSL and SLua."
},
"@sl-slua/global/ll.Abs": {
"documentation": "Returns the absolute (positive) version of Value.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAbs"
},
"@sl-slua/global/ll.Acos": {
"documentation": "Returns the arc-cosine of Value, in radians.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAcos"
},
"@sl-slua/global/ll.AddToLandBanList": {
"documentation": "Add avatar ID to the parcel ban list for the specified number of Hours.<br>A value of 0 for Hours will add the agent indefinitely.<br>The smallest value that Hours will accept is 0.01; anything smaller will be seen as 0.<br>When values that small are used, it seems the function bans in approximately 30 second increments (Probably 36 second increments, as 0.01 of an hour is 36 seconds).<br>Residents teleporting to a parcel where they are banned will be redirected to a neighbouring parcel.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAddToLandBanList"
},
"@sl-slua/global/ll.AddToLandPassList": {
"documentation": "Add avatar ID to the land pass list, for a duration of Hours.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAddToLandPassList"
},
"@sl-slua/global/ll.AdjustDamage": {
"documentation": "Changes the amount of damage to be delivered by this damage event.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAdjustDamage"
},
"@sl-slua/global/ll.AdjustSoundVolume": {
"documentation": "Adjusts the volume (0.0 - 1.0) of the currently playing attached sound.<br>This function has no effect on sounds started with llTriggerSound.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAdjustSoundVolume"
},
"@sl-slua/global/ll.AgentInExperience": {
"documentation": "Returns TRUE if the agent is in the Experience and the Experience can run in the current location.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAgentInExperience"
},
"@sl-slua/global/ll.AllowInventoryDrop": {
"documentation": "If Flag == TRUE, users without object modify permissions can still drop inventory items into the object.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAllowInventoryDrop"
},
"@sl-slua/global/ll.AngleBetween": {
"documentation": "Returns the angle, in radians, between rotations Rot1 and Rot2.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAngleBetween"
},
"@sl-slua/global/ll.ApplyImpulse": {
"documentation": "Applies impulse to the object.<br>If Local == TRUE, apply the Force in local coordinates; otherwise, apply the Force in global coordinates.<br>This function only works on physical objects.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlApplyImpulse"
},
"@sl-slua/global/ll.ApplyRotationalImpulse": {
"documentation": "Applies rotational impulse to the object.<br>If Local == TRUE, apply the Force in local coordinates; otherwise, apply the Force in global coordinates.<br>This function only works on physical objects.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlApplyRotationalImpulse"
},
"@sl-slua/global/ll.Asin": {
"documentation": "Returns the arc-sine, in radians, of Value.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAsin"
},
"@sl-slua/global/ll.Atan2": {
"documentation": "Returns the arc-tangent2 of y, x.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAtan2"
},
"@sl-slua/global/ll.AttachToAvatar": {
"documentation": "Attach to avatar at point AttachmentPoint.<br>Requires the PERMISSION_ATTACH runtime permission.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAttachToAvatar"
},
"@sl-slua/global/ll.AttachToAvatarTemp": {
"documentation": "Follows the same convention as llAttachToAvatar, with the exception that the object will not create new inventory for the user, and will disappear on detach or disconnect.<br>Requires the PERMISSION_ATTACH runtime permission.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAttachToAvatarTemp"
},
"@sl-slua/global/ll.AvatarOnLinkSitTarget": {
"documentation": "If an avatar is sitting on the link's sit target, return the avatar's key, NULL_KEY otherwise.<br>Returns a key that is the UUID of the user seated on the specified link's prim.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAvatarOnLinkSitTarget"
},
"@sl-slua/global/ll.AvatarOnSitTarget": {
"documentation": "If an avatar is seated on the sit target, returns the avatar's key, otherwise NULL_KEY.<br>This only will detect avatars sitting on sit targets defined with llSitTarget.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAvatarOnSitTarget"
},
"@sl-slua/global/ll.Axes2Rot": {
"documentation": "Returns the rotation represented by coordinate axes Forward, Left, and Up.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAxes2Rot"
},
"@sl-slua/global/ll.AxisAngle2Rot": {
"documentation": "Returns the rotation that is a generated Angle about Axis.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlAxisAngle2Rot"
},
"@sl-slua/global/ll.Base64ToInteger": {
"documentation": "Returns an integer that is the Text, Base64 decoded as a big endian integer.<br>Returns zero if Text is longer then 8 characters. If Text contains fewer then 6 characters, the return value is unpredictable.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlBase64ToInteger"
},
"@sl-slua/global/ll.Base64ToString": {
"documentation": "Converts a Base64 string to a conventional string.<br>If the conversion creates any unprintable characters, they are converted to question marks.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlBase64ToString"
},
"@sl-slua/global/ll.BreakAllLinks": {
"documentation": "De-links all prims in the link set.<br>Requires the PERMISSION_CHANGE_LINKS runtime permission.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlBreakAllLinks"
},
"@sl-slua/global/ll.BreakLink": {
"documentation": "De-links the prim with the given link number.<br>Requires the PERMISSION_CHANGE_LINKS runtime permission.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlBreakLink"
},
"@sl-slua/global/ll.CSV2List": {
"documentation": "Create a list from a string of comma separated values specified in Text.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCSV2List"
},
"@sl-slua/global/ll.CastRay": {
"documentation": "Casts a ray into the physics world from 'start' to 'end' and returns data according to details in Options.<br>Reports collision data for intersections with objects.<br>Return value: [UUID_1, {link_number_1}, hit_position_1, {hit_normal_1}, UUID_2, {link_number_2}, hit_position_2, {hit_normal_2}, ... , status_code] where {} indicates optional data.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCastRay"
},
"@sl-slua/global/ll.Ceil": {
"documentation": "Returns smallest integer value >= Value.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCeil"
},
"@sl-slua/global/ll.Char": {
"documentation": "Returns a single character string that is the representation of the unicode value.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlChar"
},
"@sl-slua/global/ll.ClearCameraParams": {
"documentation": "Resets all camera parameters to default values and turns off scripted camera control.<br>Requires the PERMISSION_CONTROL_CAMERA runtime permission (automatically granted to attached or sat on objects).",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlClearCameraParams"
},
"@sl-slua/global/ll.ClearLinkMedia": {
"documentation": "Clears (deletes) the media and all parameters from the given Face on the linked prim.<br>Returns an integer that is a STATUS_* flag, which details the success/failure of the operation.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlClearLinkMedia"
},
"@sl-slua/global/ll.ClearPrimMedia": {
"documentation": "Clears (deletes) the media and all parameters from the given Face.<br>Returns an integer that is a STATUS_* flag which details the success/failure of the operation.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlClearPrimMedia"
},
"@sl-slua/global/ll.CloseRemoteDataChannel": {
"documentation": "This function is deprecated.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCloseRemoteDataChannel"
},
"@sl-slua/global/ll.Cloud": {
"documentation": "Returns the cloud density at the object's position + Offset.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCloud"
},
"@sl-slua/global/ll.CollisionFilter": {
"documentation": "Specify an empty string or NULL_KEY for Accept, to not filter on the corresponding parameter.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCollisionFilter"
},
"@sl-slua/global/ll.CollisionSound": {
"documentation": "Suppress default collision sounds, replace default impact sounds with ImpactSound.<br>The ImpactSound must be in the object inventory.<br>Supply an empty string to suppress collision sounds.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCollisionSound"
},
"@sl-slua/global/ll.CollisionSprite": {
"documentation": "Suppress default collision sprites, replace default impact sprite with ImpactSprite; found in the object inventory (empty string to just suppress).",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCollisionSprite"
},
"@sl-slua/global/ll.ComputeHash": {
"documentation": "Returns hex-encoded Hash string of Message using digest Algorithm.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlComputeHash"
},
"@sl-slua/global/ll.Cos": {
"documentation": "Returns the cosine of Theta (Theta in radians).",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCos"
},
"@sl-slua/global/ll.CreateCharacter": {
"documentation": "Convert link-set to AI/Physics character.<br>Creates a path-finding entity, known as a \"character\", from the object containing the script. Required to activate use of path-finding functions.<br>Options is a list of key/value pairs.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCreateCharacter"
},
"@sl-slua/global/ll.CreateKeyValue": {
"documentation": "Starts an asychronous transaction to create a key-value pair. Will fail with XP_ERROR_STORAGE_EXCEPTION if the key already exists. The dataserver callback will be executed with the key returned from this call and a string describing the result. The result is a two element commma-delimited list. The first item is an integer specifying if the transaction succeeded (1) or not (0). In the failure case, the second item will be an integer corresponding to one of the XP_ERROR_... constants. In the success case the second item will be the value passed to the function.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCreateKeyValue"
},
"@sl-slua/global/ll.CreateLink": {
"documentation": "Attempt to link the object the script is in, to target.<br>Requires the PERMISSION_CHANGE_LINKS runtime permission.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlCreateLink"
},
"@sl-slua/global/ll.Damage": {
"documentation": "Generates a damage event on the targeted agent or task.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlDamage"
},
"@sl-slua/global/ll.DataSizeKeyValue": {
"documentation": "Starts an asychronous transaction the request the used and total amount of data allocated for the Experience. The dataserver callback will be executed with the key returned from this call and a string describing the result. The result is commma-delimited list. The first item is an integer specifying if the transaction succeeded (1) or not (0). In the failure case, the second item will be an integer corresponding to one of the XP_ERROR_... constants. In the success case the second item will be the the amount in use and the third item will be the total available.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlDataSizeKeyValue"
},
"@sl-slua/global/ll.DeleteCharacter": {
"documentation": "Convert link-set from AI/Physics character to Physics object.<br>Convert the current link-set back to a standard object, removing all path-finding properties.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlDeleteCharacter"
},
"@sl-slua/global/ll.DeleteKeyValue": {
"documentation": "Starts an asychronous transaction to delete a key-value pair. The dataserver callback will be executed with the key returned from this call and a string describing the result. The result is a two element commma-delimited list. The first item is an integer specifying if the transaction succeeded (1) or not (0). In the failure case, the second item will be an integer corresponding to one of the XP_ERROR_... constants. In the success case the second item will be the value associated with the key.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlDeleteKeyValue"
},
"@sl-slua/global/ll.DeleteSubList": {
"documentation": "Removes the slice from start to end and returns the remainder of the list.<br>Remove a slice from the list and return the remainder, start and end are inclusive.<br>Using negative numbers for start and/or end causes the index to count backwards from the length of the list, so 0, -1 would delete the entire list.<br>If Start is larger than End the list deleted is the exclusion of the entries; so 6, 4 would delete the entire list except for the 5th list entry.",
"learn_more_link": "https://wiki.secondlife.com/wiki/LlDeleteSubList"