Skip to content

Commit 6be5c85

Browse files
committed
Add raycaster params and update to version-dce0c0c1ff664c2a
1 parent d4e5ddf commit 6be5c85

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.luacheckrc

+16-5
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ stds.roblox = {
9292
DefineFastFlag = read_write;
9393
DefineFastInt = read_write;
9494
DefineFastString = read_write;
95+
GetEngineFeature = read_write;
9596
GetFastFlag = read_write;
9697
GetFastInt = read_write;
9798
GetFastString = read_write;
@@ -177,6 +178,8 @@ stds.roblox = {
177178
TemporaryLegacyPhysicsSolverOverride = read_write;
178179
Terrain = read_only;
179180
BreakJoints = read_write;
181+
CalculateJumpDistance = read_write;
182+
CalculateJumpHeight = read_write;
180183
CalculateJumpPower = read_write;
181184
ExperimentalSolverIsEnabled = read_write;
182185
GetNumAwakeParts = read_write;
@@ -188,6 +191,8 @@ stds.roblox = {
188191
SetPhysicsThrottleEnabled = read_write;
189192
UnjoinFromOutsiders = read_write;
190193
ZoomToExtents = read_write;
194+
ArePartsTouchingOthers = read_write;
195+
BulkMoveTo = read_write;
191196
FindPartOnRay = read_write;
192197
FindPartOnRayWithIgnoreList = read_write;
193198
FindPartOnRayWithWhitelist = read_write;
@@ -315,6 +320,8 @@ stds.roblox = {
315320

316321
Ray = def_fields({"new"}),
317322

323+
RaycastParams = def_fields({"new"}),
324+
318325
Rect = def_fields({"new"}),
319326

320327
Region3 = def_fields({"new"}),
@@ -339,6 +346,8 @@ stds.roblox = {
339346
Enum = {
340347
readonly = true,
341348
fields = {
349+
ABTestLoadingStatus = def_enum({"None", "Pending", "Initialized", "Error",
350+
"TimedOut", "ShutOff"}),
342351
ActionType = def_enum({"Nothing", "Pause", "Lose", "Draw", "Win"}),
343352
ActuatorRelativeTo = def_enum({"Attachment0", "Attachment1", "World"}),
344353
ActuatorType = def_enum({"None", "Motor", "Servo"}),
@@ -358,7 +367,8 @@ stds.roblox = {
358367
"WaistAccessory", "ClimbAnimation", "DeathAnimation", "FallAnimation",
359368
"IdleAnimation", "JumpAnimation", "RunAnimation", "SwimAnimation",
360369
"WalkAnimation", "PoseAnimation", "EarAccessory", "EyeAccessory",
361-
"EmoteAnimation"}),
370+
"EmoteAnimation", "Video"}),
371+
AutoIndentRule = def_enum({"Off", "Absolute", "Relative"}),
362372
AvatarContextMenuOption = def_enum({"Friend", "Chat", "Emote", "InspectMenu"}),
363373
AvatarJointPositionType = def_enum({"Fixed", "ArtistIntent"}),
364374
Axis = def_enum({"X", "Y", "Z"}),
@@ -370,6 +380,7 @@ stds.roblox = {
370380
"RightUpperArm", "RootPart", "Unknown"}),
371381
BorderMode = def_enum({"Outline", "Middle", "Inset"}),
372382
BreakReason = def_enum({"Other", "Error", "UserBreakpoint", "SpecialBreakpoint"}),
383+
BulkMoveMode = def_enum({"FireAllEvents", "FireCFrameChanged", "FireNoEvents"}),
373384
Button = def_enum({"Jump", "Dismount"}),
374385
ButtonStyle = def_enum({"Custom", "RobloxButtonDefault", "RobloxButton",
375386
"RobloxRoundButton", "RobloxRoundDefaultButton", "RobloxRoundDropdownButton"}),
@@ -492,7 +503,7 @@ stds.roblox = {
492503
"ApplicationUrlEncoded", "TextPlain", "TextXml"}),
493504
HttpError = def_enum({"OK", "InvalidUrl", "DnsResolve", "ConnectFail",
494505
"OutOfMemory", "TimedOut", "TooManyRedirects", "InvalidRedirect", "NetFail",
495-
"Aborted", "SslConnectFail", "Unknown"}),
506+
"Aborted", "SslConnectFail", "SslVerificationFail", "Unknown"}),
496507
HttpRequestType = def_enum({"Default", "MarketplaceService", "Players", "Chat",
497508
"Avatar", "Analytics", "Localization"}),
498509
HumanoidCollisionType = def_enum({"OuterBox", "InnerBox"}),
@@ -651,9 +662,9 @@ stds.roblox = {
651662
"ScriptFindSelectionBackground", "ScriptMatchingWordSelectionBackground",
652663
"ScriptOperator", "ScriptNumber", "ScriptString", "ScriptComment",
653664
"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",
657668
"DiffTextSeparatorBackground", "DiffTextNoChangeBackground",
658669
"DiffTextAdditionBackground", "DiffTextDeletionBackground", "DiffLineNum",
659670
"DiffLineNumSeparatorBackground", "DiffLineNumNoChangeBackground",

src/generate.lua

+1
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ local function write_types(indent, output)
245245
write_item(output, indent, "PhysicalProperties", {"new"})
246246
write_item(output, indent, "Random", {"new"})
247247
write_item(output, indent, "Ray", {"new"})
248+
write_item(output, indent, "RaycastParams", {"new"})
248249
write_item(output, indent, "Rect", {"new"})
249250
write_item(output, indent, "Region3", {"new"})
250251
write_item(output, indent, "Region3int16", {"new"})

0 commit comments

Comments
 (0)