@@ -180,6 +180,7 @@ stds.roblox = {
180
180
StreamingPauseMode = read_write ;
181
181
StreamingTargetRadius = read_write ;
182
182
Terrain = read_only ;
183
+ TouchesUseCollisionGroups = read_write ;
183
184
BreakJoints = read_write ;
184
185
CalculateJumpDistance = read_write ;
185
186
CalculateJumpHeight = read_write ;
@@ -191,6 +192,7 @@ stds.roblox = {
191
192
JoinToOutsiders = read_write ;
192
193
MakeJoints = read_write ;
193
194
PGSIsEnabled = read_write ;
195
+ SetMeshPartHeads = read_write ;
194
196
SetPhysicsThrottleEnabled = read_write ;
195
197
UnjoinFromOutsiders = read_write ;
196
198
ZoomToExtents = read_write ;
@@ -268,9 +270,9 @@ stds.roblox = {
268
270
269
271
-- Libraries
270
272
math = def_fields ({" abs" , " acos" , " asin" , " atan" , " atan2" , " ceil" , " clamp" , " cos" , " cosh" ,
271
- " deg" , " exp" , " floor" , " fmod" , " frexp" , " ldexp" , " log" , " log10" , " max" , " min" , " modf " ,
272
- " noise " , " pow " , " rad " , " random " , " randomseed " , " sign " , " sin " , " sinh " , " sqrt " , " tan " ,
273
- " tanh " , " huge " , " pi " }),
273
+ " deg" , " exp" , " floor" , " fmod" , " frexp" , " huge " , " ldexp" , " log" , " log10" , " max" , " min" ,
274
+ " modf " , " noise " , " pi " , " pow " , " rad " , " random " , " randomseed " , " round " , " sign " , " sin " ,
275
+ " sinh " , " sqrt " , " tan " , " tanh " }),
274
276
275
277
table = def_fields ({" concat" , " foreach" , " foreachi" , " getn" , " insert" , " remove" , " sort" ,
276
278
" pack" , " unpack" , " move" , " create" , " find" }),
@@ -358,14 +360,16 @@ stds.roblox = {
358
360
AlignType = def_enum ({" Parallel" , " Perpendicular" }),
359
361
AlphaMode = def_enum ({" Overlay" , " Transparency" }),
360
362
AnalyticsEconomyAction = def_enum ({" Default" , " Acquire" , " Spend" }),
361
- AnalyticsLogLevel = def_enum ({" Trace" , " Debug" , " Infomation " , " Warning" , " Error" ,
363
+ AnalyticsLogLevel = def_enum ({" Trace" , " Debug" , " Information " , " Warning" , " Error" ,
362
364
" Fatal" }),
363
365
AnalyticsProgressionStatus = def_enum ({" Default" , " Begin" , " Complete" , " Abandon" ,
364
366
" Fail" }),
365
367
AnimationPriority = def_enum ({" Idle" , " Movement" , " Action" , " Core" }),
366
368
AppShellActionType = def_enum ({" None" , " OpenApp" , " TapChatTab" ,
367
369
" TapConversationEntry" , " TapAvatarTab" , " ReadConversation" , " TapGamePageTab" ,
368
370
" TapHomePageTab" , " GamePageLoaded" , " HomePageLoaded" , " AvatarEditorPageLoaded" }),
371
+ AppShellFeature = def_enum ({" None" , " Chat" , " AvatarEditor" , " GamePage" , " HomePage" ,
372
+ " More" , " Landing" }),
369
373
AppUpdateStatus = def_enum ({" Unknown" , " NotSupported" , " Failed" , " NotAvailable" ,
370
374
" Available" }),
371
375
AspectType = def_enum ({" FitWithinMaxSize" , " ScaleWithParentSize" }),
@@ -785,8 +789,8 @@ stds.roblox = {
785
789
VirtualInputMode = def_enum ({" Recording" , " Playing" , " None" }),
786
790
WaterDirection = def_enum ({" NegX" , " X" , " NegY" , " Y" , " NegZ" , " Z" }),
787
791
WaterForce = def_enum ({" None" , " Small" , " Medium" , " Strong" , " Max" }),
788
- WrapLayerDebugMode = def_enum ({" None" , " BindedCage " , " LayerCage" ,
789
- " BindedCageAndLinks " , " Reference" }),
792
+ WrapLayerDebugMode = def_enum ({" None" , " BoundCage " , " LayerCage" ,
793
+ " BoundCageAndLinks " , " Reference" }),
790
794
WrapTargetDebugMode = def_enum ({" None" , " TargetCage" }),
791
795
ZIndexBehavior = def_enum ({" Global" , " Sibling" }),
792
796
}
0 commit comments