-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathLibraries.lua
370 lines (311 loc) · 12.9 KB
/
Libraries.lua
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
return {
Janitor = {
URL = "https://raw.githubusercontent.com/RoStrap/Events/master/Janitor.lua";
Documentation = "https://rostrap.github.io/Libraries/Events/Janitor/";
ParentFolderPath = "Events";
};
Signal = {
URL = "https://raw.githubusercontent.com/RoStrap/Events/master/Signal.lua";
Documentation = "https://rostrap.github.io/Libraries/Events/Signal/";
ParentFolderPath = "Events";
};
ReplicatedValue = {
URL = "https://raw.githubusercontent.com/RoStrap/Events/master/ReplicatedValue.lua";
Documentation = "https://rostrap.github.io/Libraries/Events/ReplicatedValue/";
ParentFolderPath = "Events";
};
Keys = {
URL = "https://raw.githubusercontent.com/RoStrap/Input/master/Keys.lua";
Documentation = "https://rostrap.github.io/Libraries/Input/Keys/";
ParentFolderPath = "Input";
};
Enumeration = {
URL = "https://raw.githubusercontent.com/RoStrap/Classes/master/Enumeration.lua";
Documentation = "https://rostrap.github.io/Libraries/Classes/Enumeration";
ParentFolderPath = "Classes";
};
PseudoInstance = {
URL = "https://raw.githubusercontent.com/RoStrap/Classes/master/PseudoInstance.lua";
Documentation = "https://rostrap.github.io/Libraries/Classes/PseudoInstance/";
ParentFolderPath = "Classes";
};
ReplicatedPseudoInstance = {
URL = "https://raw.githubusercontent.com/RoStrap/Classes/master/ReplicatedPseudoInstance.lua";
Documentation = "https://rostrap.github.io/Libraries/Classes/ReplicatedPseudoInstance/";
ParentFolderPath = "Classes";
};
Sentry = {
URL = "https://github.com/RoStrap/Sentry";
Documentation = "https://rostrap.github.io/Libraries/Sentry/";
};
Bezier = {
URL = "https://raw.githubusercontent.com/RoStrap/Interpolation/master/Bezier.lua";
Documentation = "https://rostrap.github.io/Libraries/Interpolation/Bezier/";
ParentFolderPath = "Interpolation";
};
EasingFunctions = {
URL = "https://raw.githubusercontent.com/RoStrap/Interpolation/master/EasingFunctions.lua";
Documentation = "https://rostrap.github.io/Libraries/Interpolation/EasingFunctions/";
ParentFolderPath = "Interpolation";
};
Lerps = {
URL = "https://raw.githubusercontent.com/RoStrap/Interpolation/master/Lerps.lua";
Documentation = "https://rostrap.github.io/Libraries/Interpolation/Lerps/";
ParentFolderPath = "Interpolation";
};
Tween = {
URL = "https://raw.githubusercontent.com/RoStrap/Interpolation/master/Tween.lua";
Documentation = "https://rostrap.github.io/Libraries/Interpolation/Tween/";
ParentFolderPath = "Interpolation";
};
Array = {
URL = "https://raw.githubusercontent.com/RoStrap/DataTypes/master/Array.lua";
Documentation = "https://rostrap.github.io/Libraries/DataTypes/Array/";
ParentFolderPath = "DataTypes";
};
--[[
HTMLParser = {
URL = "https://raw.githubusercontent.com/RoStrap/DataTypes/master/HTMLParser.lua";
Documentation = "https://rostrap.github.io/Libraries/DataTypes/HTMLParser/";
ParentFolderPath = "DataTypes";
};
--]]
SortedArray = {
URL = "https://raw.githubusercontent.com/RoStrap/DataTypes/master/SortedArray.lua";
Documentation = "https://rostrap.github.io/Libraries/DataTypes/SortedArray/";
ParentFolderPath = "DataTypes";
};
Table = {
URL = "https://raw.githubusercontent.com/RoStrap/DataTypes/master/Table.lua";
Documentation = "https://rostrap.github.io/Libraries/DataTypes/Table/";
ParentFolderPath = "DataTypes";
};
BigNum = {
URL = "https://raw.githubusercontent.com/RoStrap/Math/master/BigNum.lua";
Documentation = "https://rostrap.github.io/Libraries/Math/BigNum/";
ParentFolderPath = "Math";
};
Leveler = {
URL = "https://raw.githubusercontent.com/RoStrap/Math/master/Leveler.lua";
Documentation = "https://rostrap.github.io/Libraries/Math/Leveler/";
ParentFolderPath = "Math";
};
Normal = {
URL = "https://raw.githubusercontent.com/RoStrap/Math/master/Normal.lua";
Documentation = "https://rostrap.github.io/Libraries/Math/Normal/";
ParentFolderPath = "Math";
};
Spring = {
URL = "https://raw.githubusercontent.com/RoStrap/Math/master/Spring.lua";
Documentation = "https://rostrap.github.io/Libraries/Math/Spring/";
ParentFolderPath = "Math";
};
WeightedProbabilityFunction = {
URL = "https://raw.githubusercontent.com/RoStrap/Math/master/WeightedProbabilityFunction.lua";
Documentation = "https://rostrap.github.io/Libraries/Math/WeightedProbabilityFunction/";
ParentFolderPath = "Math";
};
FastSpawn = {
URL = "https://raw.githubusercontent.com/RoStrap/Helper/master/FastSpawn.lua";
Documentation = "https://rostrap.github.io/Libraries/Helper/FastSpawn/";
ParentFolderPath = "Helper";
};
Make = {
URL = "https://raw.githubusercontent.com/RoStrap/Helper/master/Make.lua";
Documentation = "https://rostrap.github.io/Libraries/Helper/Make/";
ParentFolderPath = "Helper";
};
Date = {
URL = "https://raw.githubusercontent.com/RoStrap/Time/master/Date.lua";
Documentation = "https://rostrap.github.io/Libraries/Time/Date/";
ParentFolderPath = "Time";
};
SyncedPoller = {
URL = "https://raw.githubusercontent.com/RoStrap/Time/master/SyncedPoller.lua";
Documentation = "https://rostrap.github.io/Libraries/Time/SyncedPoller/";
ParentFolderPath = "Time";
};
ConditionalPoller = {
URL = "https://raw.githubusercontent.com/RoStrap/Time/master/ConditionalPoller.lua";
Documentation = "https://rostrap.github.io/Libraries/Time/ConditionalPoller/";
ParentFolderPath = "Time";
};
Debug = {
URL = "https://raw.githubusercontent.com/RoStrap/Debugging/master/Debug.lua";
Documentation = "https://rostrap.github.io/Libraries/Debugging/Debug/";
ParentFolderPath = "Debugging";
};
Typer = {
URL = "https://raw.githubusercontent.com/RoStrap/Debugging/master/Typer.lua";
Documentation = "https://rostrap.github.io/Libraries/Debugging/Typer/";
ParentFolderPath = "Debugging";
};
AsymmetricTransformation = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/AsymmetricTransformation.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/AsymmetricTransformation/";
ParentFolderPath = "RoStrapUI";
};
Checkbox = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/Checkbox.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/Checkbox/";
ParentFolderPath = "RoStrapUI";
};
ChoiceDialog = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/ChoiceDialog.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/ChoiceDialog/";
ParentFolderPath = "RoStrapUI";
};
ConfirmationDialog = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/ConfirmationDialog.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/ConfirmationDialog/";
ParentFolderPath = "RoStrapUI";
};
Color = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/Color.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/Color/";
ParentFolderPath = "RoStrapUI";
};
Radio = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/Radio.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/Radio/";
ParentFolderPath = "RoStrapUI";
};
RadioGroup = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/RadioGroup.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/RadioGroup/";
ParentFolderPath = "RoStrapUI";
};
RippleButton = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/RippleButton.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/RippleButton/";
ParentFolderPath = "RoStrapUI";
};
Rippler = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/Rippler.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/Rippler/";
ParentFolderPath = "RoStrapUI";
};
RoStrapPriorityUI = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/RoStrapPriorityUI.lua";
Documentation = "WIP";
ParentFolderPath = "RoStrapUI";
};
SelectionController = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/SelectionController.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/SelectionController/";
ParentFolderPath = "RoStrapUI";
};
Shadow = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/Shadow.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/Shadow/";
ParentFolderPath = "RoStrapUI";
};
Snackbar = {
URL = "https://raw.githubusercontent.com/RoStrap/RoStrapUI/master/Snackbar.lua";
Documentation = "https://rostrap.github.io/Libraries/RoStrapUI/Snackbar/";
ParentFolderPath = "RoStrapUI";
};
Try = {
URL = "Validark/RBX-Try-Library/tree/patch-4";
Description = "An asynchronous pcall-wrapper for interdependent error-prone functions";
};
EvLightning = {
URL = "evaera/EvLightning";
Description = "Realistic-looking lightning bolt generator";
Documentation = "https://github.com/evaera/EvLightning/blob/master/README.md";
};
RadialImage = {
URL = "evaera/RadialSpriteSheetGenerator/blob/master/roblox/RadialImage.lua";
Description = "A library which displays radial progress indicators using a sprite sheet generated by a nifty tool";
Documentation = "https://github.com/evaera/RadialSpriteSheetGenerator/blob/master/README.md";
};
DataStoreService = {
URL = "buildthomas/MockDataStoreService/tree/master/lib";
Description = "An implementation of DataStoreService in Lua for use in Studio";
Documentation = "https://github.com/buildthomas/MockDataStoreService/blob/master/README.md";
};
Promise = {
URL = "evaera/roblox-lua-promise/tree/master/lib";
Description = "An implementation of Promise similar to Promise/A+";
Documentation = "https://eryn.io/roblox-lua-promise/";
};
Cmdr = {
URL = "evaera/Cmdr";
Description = "A fully extensible and type-safe admin-commands console";
Documentation = "https://github.com/evaera/Cmdr/blob/master/README.md";
ParentFolderPath = "Cmdr.Server"; -- Dot separated directory within Repository.Packages into which Cmdr will be installed
};
-- Succeeded by Rocs.
--[[
Aurora = {
URL = "evaera/Aurora/tree/master/lib";
Description = "A library that can manage status effects (known as \"Auras\") in your Roblox game";
Documentation = "https://github.com/evaera/Aurora/blob/master/README.md";
};
]]
Roact = {
URL = "Roblox/roact/tree/master/src";
Description = "A declarative UI library similar to Facebook's React";
Documentation = "https://roblox.github.io/roact/";
};
Rodux = {
URL = "Roblox/rodux/tree/master/src";
Description = "A state management library inspired by Redux";
Documentation = "https://roblox.github.io/rodux/";
};
["Roact-Rodux"] = {
URL = "Roblox/roact-rodux/tree/master/src";
Description = "An ergonomic binding between Roact and Rodux";
Documentation = "https://roblox.github.io/roact-rodux/";
};
Replica = {
URL = "headjoe3/Replica/tree/master/Replica";
Description = "An easily controllable Server/Client data replication library";
Documentation = "https://github.com/headjoe3/Replica/blob/master/README.md";
};
Rocrastinate = {
URL = "headjoe3/Rocrastinate/tree/master/Rocrastinate";
Description = "A React/Redux-like state management and view library optimized for Roblox";
Documentation = "https://github.com/headjoe3/Rocrastinate/blob/master/docs/1-1-introduction.md";
};
DataStore2 = {
URL = "Kampfkarren/Roblox/tree/master/DataStore2";
Description = "DataStore2 is a simple to use data store system that caches, leading to significantly faster performance over traditional data stores";
Documentation = "https://kampfkarren.github.io/Roblox/";
};
ContextControls = {
URL = "vocksel/context-controls/tree/main/src";
Description = "Wrapper for ContextActionService with easy mobile button support";
Documentation = "https://github.com/vocksel/context-controls/blob/main/README.md";
};
t = {
URL = "osyrisrblx/t/tree/master/lib";
Description = "A module which allows you to create type definitions to check values against";
Documentation = "https://github.com/osyrisrblx/t/blob/master/README.md";
};
Tag = {
URL = "vocksel/tag/tree/main/src";
Description = "Class to make tagging instances easy and typesafe";
Documentation = "https://github.com/vocksel/tag/blob/main/README.md";
};
TestEZ = {
URL = "Roblox/testez/tree/master/src";
Description = "BDD-style test and assertion library for Roblox Lua";
Documentation = "https://roblox.github.io/testez/";
};
CameraShaker = {
URL = "Sleitnick/RbxCameraShaker/tree/master/src/CameraShaker";
Description = "Camera shake effects for Roblox games";
Documentation = "https://github.com/Sleitnick/RbxCameraShaker/blob/master/README.md";
};
Rocs = {
URL = "rocs-rbx/Rocs/tree/master/lib";
Description = "Roblox Component System";
Documentation = "https://rocs-rbx.github.io/Rocs/#rocs";
};
Scheduler = {
URL = "howmanysmall/Scheduler/tree/master/src";
Description = "A RunService.Heartbeat alternative to Roblox functions that use the legacy scheduler";
Documentation = "https://github.com/howmanysmall/Scheduler/blob/master/README.md";
};
}