@@ -92,6 +92,7 @@ stds.roblox = {
92
92
DefineFastFlag = read_write ;
93
93
DefineFastInt = read_write ;
94
94
DefineFastString = read_write ;
95
+ GetEngineFeature = read_write ;
95
96
GetFastFlag = read_write ;
96
97
GetFastInt = read_write ;
97
98
GetFastString = read_write ;
@@ -177,6 +178,8 @@ stds.roblox = {
177
178
TemporaryLegacyPhysicsSolverOverride = read_write ;
178
179
Terrain = read_only ;
179
180
BreakJoints = read_write ;
181
+ CalculateJumpDistance = read_write ;
182
+ CalculateJumpHeight = read_write ;
180
183
CalculateJumpPower = read_write ;
181
184
ExperimentalSolverIsEnabled = read_write ;
182
185
GetNumAwakeParts = read_write ;
@@ -188,6 +191,8 @@ stds.roblox = {
188
191
SetPhysicsThrottleEnabled = read_write ;
189
192
UnjoinFromOutsiders = read_write ;
190
193
ZoomToExtents = read_write ;
194
+ ArePartsTouchingOthers = read_write ;
195
+ BulkMoveTo = read_write ;
191
196
FindPartOnRay = read_write ;
192
197
FindPartOnRayWithIgnoreList = read_write ;
193
198
FindPartOnRayWithWhitelist = read_write ;
@@ -315,6 +320,8 @@ stds.roblox = {
315
320
316
321
Ray = def_fields ({" new" }),
317
322
323
+ RaycastParams = def_fields ({" new" }),
324
+
318
325
Rect = def_fields ({" new" }),
319
326
320
327
Region3 = def_fields ({" new" }),
@@ -339,6 +346,8 @@ stds.roblox = {
339
346
Enum = {
340
347
readonly = true ,
341
348
fields = {
349
+ ABTestLoadingStatus = def_enum ({" None" , " Pending" , " Initialized" , " Error" ,
350
+ " TimedOut" , " ShutOff" }),
342
351
ActionType = def_enum ({" Nothing" , " Pause" , " Lose" , " Draw" , " Win" }),
343
352
ActuatorRelativeTo = def_enum ({" Attachment0" , " Attachment1" , " World" }),
344
353
ActuatorType = def_enum ({" None" , " Motor" , " Servo" }),
@@ -358,7 +367,8 @@ stds.roblox = {
358
367
" WaistAccessory" , " ClimbAnimation" , " DeathAnimation" , " FallAnimation" ,
359
368
" IdleAnimation" , " JumpAnimation" , " RunAnimation" , " SwimAnimation" ,
360
369
" WalkAnimation" , " PoseAnimation" , " EarAccessory" , " EyeAccessory" ,
361
- " EmoteAnimation" }),
370
+ " EmoteAnimation" , " Video" }),
371
+ AutoIndentRule = def_enum ({" Off" , " Absolute" , " Relative" }),
362
372
AvatarContextMenuOption = def_enum ({" Friend" , " Chat" , " Emote" , " InspectMenu" }),
363
373
AvatarJointPositionType = def_enum ({" Fixed" , " ArtistIntent" }),
364
374
Axis = def_enum ({" X" , " Y" , " Z" }),
@@ -370,6 +380,7 @@ stds.roblox = {
370
380
" RightUpperArm" , " RootPart" , " Unknown" }),
371
381
BorderMode = def_enum ({" Outline" , " Middle" , " Inset" }),
372
382
BreakReason = def_enum ({" Other" , " Error" , " UserBreakpoint" , " SpecialBreakpoint" }),
383
+ BulkMoveMode = def_enum ({" FireAllEvents" , " FireCFrameChanged" , " FireNoEvents" }),
373
384
Button = def_enum ({" Jump" , " Dismount" }),
374
385
ButtonStyle = def_enum ({" Custom" , " RobloxButtonDefault" , " RobloxButton" ,
375
386
" RobloxRoundButton" , " RobloxRoundDefaultButton" , " RobloxRoundDropdownButton" }),
@@ -492,7 +503,7 @@ stds.roblox = {
492
503
" ApplicationUrlEncoded" , " TextPlain" , " TextXml" }),
493
504
HttpError = def_enum ({" OK" , " InvalidUrl" , " DnsResolve" , " ConnectFail" ,
494
505
" OutOfMemory" , " TimedOut" , " TooManyRedirects" , " InvalidRedirect" , " NetFail" ,
495
- " Aborted" , " SslConnectFail" , " Unknown" }),
506
+ " Aborted" , " SslConnectFail" , " SslVerificationFail " , " Unknown" }),
496
507
HttpRequestType = def_enum ({" Default" , " MarketplaceService" , " Players" , " Chat" ,
497
508
" Avatar" , " Analytics" , " Localization" }),
498
509
HumanoidCollisionType = def_enum ({" OuterBox" , " InnerBox" }),
@@ -651,9 +662,9 @@ stds.roblox = {
651
662
" ScriptFindSelectionBackground" , " ScriptMatchingWordSelectionBackground" ,
652
663
" ScriptOperator" , " ScriptNumber" , " ScriptString" , " ScriptComment" ,
653
664
" ScriptPreprocessor" , " ScriptKeyword" , " ScriptBuiltInFunction" ,
654
- " ScriptWarning" , " ScriptError" , " ScriptWhitespace" , " DebuggerCurrentLine " ,
655
- " DebuggerErrorLine " , " DiffFilePathText " , " DiffTextHunkInfo " ,
656
- " DiffTextNoChange" , " DiffTextAddition" , " DiffTextDeletion" ,
665
+ " ScriptWarning" , " ScriptError" , " ScriptWhitespace" , " ScriptRuler " ,
666
+ " DebuggerCurrentLine " , " DebuggerErrorLine " , " DiffFilePathText " ,
667
+ " DiffTextHunkInfo " , " DiffTextNoChange" , " DiffTextAddition" , " DiffTextDeletion" ,
657
668
" DiffTextSeparatorBackground" , " DiffTextNoChangeBackground" ,
658
669
" DiffTextAdditionBackground" , " DiffTextDeletionBackground" , " DiffLineNum" ,
659
670
" DiffLineNumSeparatorBackground" , " DiffLineNumNoChangeBackground" ,
0 commit comments