0.454.0.413308
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
// Auto-generated list of creatable Roblox classes.
|
||||
// Updated as of 0.450.0.411923
|
||||
// Updated as of 0.454.0.413308
|
||||
|
||||
using System;
|
||||
|
||||
@ -410,13 +410,11 @@ namespace RobloxFiles
|
||||
set => CFrame = value;
|
||||
}
|
||||
|
||||
public float DiagonalFieldOfView;
|
||||
public float FieldOfView = 70;
|
||||
public FieldOfViewMode FieldOfViewMode = FieldOfViewMode.Vertical;
|
||||
public CFrame Focus = new CFrame(0, 0, -5);
|
||||
public bool HeadLocked = true;
|
||||
public float HeadScale = 1;
|
||||
public float MaxAxisFieldOfView;
|
||||
|
||||
[Obsolete]
|
||||
public CFrame focus
|
||||
@ -1471,6 +1469,7 @@ namespace RobloxFiles
|
||||
|
||||
public abstract class HandleAdornment : PVAdornment
|
||||
{
|
||||
public AdornCullingMode AdornCullingMode = AdornCullingMode.Automatic;
|
||||
public bool AlwaysOnTop;
|
||||
public CFrame CFrame = new CFrame();
|
||||
public Vector3 SizeRelativeOffset = new Vector3();
|
||||
@ -1693,6 +1692,22 @@ namespace RobloxFiles
|
||||
public float WidthScale = 1;
|
||||
}
|
||||
|
||||
public abstract class ILegacyStudioBridge : Instance
|
||||
{
|
||||
public ILegacyStudioBridge()
|
||||
{
|
||||
IsService = true;
|
||||
}
|
||||
}
|
||||
|
||||
public class LegacyStudioBridge : ILegacyStudioBridge
|
||||
{
|
||||
public LegacyStudioBridge()
|
||||
{
|
||||
IsService = true;
|
||||
}
|
||||
}
|
||||
|
||||
public class InsertService : Instance
|
||||
{
|
||||
public InsertService()
|
||||
@ -2497,6 +2512,33 @@ namespace RobloxFiles
|
||||
public float Spread = 1;
|
||||
}
|
||||
|
||||
public class ProximityPrompt : Instance
|
||||
{
|
||||
public string ActionText = "Interact";
|
||||
public bool ClickablePrompt = true;
|
||||
public bool Enabled = true;
|
||||
public ProximityPromptExclusivity Exclusivity = ProximityPromptExclusivity.OnePerButton;
|
||||
public KeyCode GamepadKeyCode = KeyCode.ButtonX;
|
||||
public float HoldDuration;
|
||||
public KeyCode KeyboardKeyCode = KeyCode.E;
|
||||
public float MaxActivationDistance = 10;
|
||||
public string ObjectText = "";
|
||||
public bool RequiresLineOfSight = true;
|
||||
public ProximityPromptStyle Style = ProximityPromptStyle.Default;
|
||||
public Vector2 UIOffset = new Vector2();
|
||||
}
|
||||
|
||||
public class ProximityPromptService : Instance
|
||||
{
|
||||
public ProximityPromptService()
|
||||
{
|
||||
IsService = true;
|
||||
}
|
||||
|
||||
public bool Enabled = true;
|
||||
public int MaxPromptsVisible = 16;
|
||||
}
|
||||
|
||||
public class RbxAnalyticsService : Instance
|
||||
{
|
||||
public RbxAnalyticsService()
|
||||
@ -3092,6 +3134,14 @@ namespace RobloxFiles
|
||||
}
|
||||
}
|
||||
|
||||
public class TracerService : Instance
|
||||
{
|
||||
public TracerService()
|
||||
{
|
||||
IsService = true;
|
||||
}
|
||||
}
|
||||
|
||||
public class Trail : Instance
|
||||
{
|
||||
public Attachment Attachment0;
|
||||
@ -3434,5 +3484,6 @@ namespace RobloxFiles
|
||||
}
|
||||
|
||||
public BasePart Part1Internal;
|
||||
public int State = 3;
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
// Auto-generated list of Roblox enums.
|
||||
// Updated as of 0.450.0.411923
|
||||
// Updated as of 0.454.0.413308
|
||||
|
||||
namespace RobloxFiles.Enums
|
||||
{
|
||||
@ -17,6 +17,12 @@ namespace RobloxFiles.Enums
|
||||
Servo
|
||||
}
|
||||
|
||||
public enum AdornCullingMode
|
||||
{
|
||||
Automatic,
|
||||
Never
|
||||
}
|
||||
|
||||
public enum AlignType
|
||||
{
|
||||
Parallel,
|
||||
@ -383,6 +389,264 @@ namespace RobloxFiles.Enums
|
||||
Enabled
|
||||
}
|
||||
|
||||
public enum KeyCode
|
||||
{
|
||||
Unknown,
|
||||
Backspace = 8,
|
||||
Tab,
|
||||
Clear = 12,
|
||||
Return,
|
||||
Pause = 19,
|
||||
Escape = 27,
|
||||
Space = 32,
|
||||
QuotedDouble = 34,
|
||||
Hash,
|
||||
Dollar,
|
||||
Percent,
|
||||
Ampersand,
|
||||
Quote,
|
||||
LeftParenthesis,
|
||||
RightParenthesis,
|
||||
Asterisk,
|
||||
Plus,
|
||||
Comma,
|
||||
Minus,
|
||||
Period,
|
||||
Slash,
|
||||
Zero,
|
||||
One,
|
||||
Two,
|
||||
Three,
|
||||
Four,
|
||||
Five,
|
||||
Six,
|
||||
Seven,
|
||||
Eight,
|
||||
Nine,
|
||||
Colon,
|
||||
Semicolon,
|
||||
LessThan,
|
||||
Equals,
|
||||
GreaterThan,
|
||||
Question,
|
||||
At,
|
||||
LeftBracket = 91,
|
||||
BackSlash,
|
||||
RightBracket,
|
||||
Caret,
|
||||
Underscore,
|
||||
Backquote,
|
||||
A,
|
||||
B,
|
||||
C,
|
||||
D,
|
||||
E,
|
||||
F,
|
||||
G,
|
||||
H,
|
||||
I,
|
||||
J,
|
||||
K,
|
||||
L,
|
||||
M,
|
||||
N,
|
||||
O,
|
||||
P,
|
||||
Q,
|
||||
R,
|
||||
S,
|
||||
T,
|
||||
U,
|
||||
V,
|
||||
W,
|
||||
X,
|
||||
Y,
|
||||
Z,
|
||||
LeftCurly,
|
||||
Pipe,
|
||||
RightCurly,
|
||||
Tilde,
|
||||
Delete,
|
||||
World0 = 160,
|
||||
World1,
|
||||
World2,
|
||||
World3,
|
||||
World4,
|
||||
World5,
|
||||
World6,
|
||||
World7,
|
||||
World8,
|
||||
World9,
|
||||
World10,
|
||||
World11,
|
||||
World12,
|
||||
World13,
|
||||
World14,
|
||||
World15,
|
||||
World16,
|
||||
World17,
|
||||
World18,
|
||||
World19,
|
||||
World20,
|
||||
World21,
|
||||
World22,
|
||||
World23,
|
||||
World24,
|
||||
World25,
|
||||
World26,
|
||||
World27,
|
||||
World28,
|
||||
World29,
|
||||
World30,
|
||||
World31,
|
||||
World32,
|
||||
World33,
|
||||
World34,
|
||||
World35,
|
||||
World36,
|
||||
World37,
|
||||
World38,
|
||||
World39,
|
||||
World40,
|
||||
World41,
|
||||
World42,
|
||||
World43,
|
||||
World44,
|
||||
World45,
|
||||
World46,
|
||||
World47,
|
||||
World48,
|
||||
World49,
|
||||
World50,
|
||||
World51,
|
||||
World52,
|
||||
World53,
|
||||
World54,
|
||||
World55,
|
||||
World56,
|
||||
World57,
|
||||
World58,
|
||||
World59,
|
||||
World60,
|
||||
World61,
|
||||
World62,
|
||||
World63,
|
||||
World64,
|
||||
World65,
|
||||
World66,
|
||||
World67,
|
||||
World68,
|
||||
World69,
|
||||
World70,
|
||||
World71,
|
||||
World72,
|
||||
World73,
|
||||
World74,
|
||||
World75,
|
||||
World76,
|
||||
World77,
|
||||
World78,
|
||||
World79,
|
||||
World80,
|
||||
World81,
|
||||
World82,
|
||||
World83,
|
||||
World84,
|
||||
World85,
|
||||
World86,
|
||||
World87,
|
||||
World88,
|
||||
World89,
|
||||
World90,
|
||||
World91,
|
||||
World92,
|
||||
World93,
|
||||
World94,
|
||||
World95,
|
||||
KeypadZero,
|
||||
KeypadOne,
|
||||
KeypadTwo,
|
||||
KeypadThree,
|
||||
KeypadFour,
|
||||
KeypadFive,
|
||||
KeypadSix,
|
||||
KeypadSeven,
|
||||
KeypadEight,
|
||||
KeypadNine,
|
||||
KeypadPeriod,
|
||||
KeypadDivide,
|
||||
KeypadMultiply,
|
||||
KeypadMinus,
|
||||
KeypadPlus,
|
||||
KeypadEnter,
|
||||
KeypadEquals,
|
||||
Up,
|
||||
Down,
|
||||
Right,
|
||||
Left,
|
||||
Insert,
|
||||
Home,
|
||||
End,
|
||||
PageUp,
|
||||
PageDown,
|
||||
F1,
|
||||
F2,
|
||||
F3,
|
||||
F4,
|
||||
F5,
|
||||
F6,
|
||||
F7,
|
||||
F8,
|
||||
F9,
|
||||
F10,
|
||||
F11,
|
||||
F12,
|
||||
F13,
|
||||
F14,
|
||||
F15,
|
||||
NumLock = 300,
|
||||
CapsLock,
|
||||
ScrollLock,
|
||||
RightShift,
|
||||
LeftShift,
|
||||
RightControl,
|
||||
LeftControl,
|
||||
RightAlt,
|
||||
LeftAlt,
|
||||
RightMeta,
|
||||
LeftMeta,
|
||||
LeftSuper,
|
||||
RightSuper,
|
||||
Mode,
|
||||
Compose,
|
||||
Help,
|
||||
Print,
|
||||
SysReq,
|
||||
Break,
|
||||
Menu,
|
||||
Power,
|
||||
Euro,
|
||||
Undo,
|
||||
ButtonX = 1000,
|
||||
ButtonY,
|
||||
ButtonA,
|
||||
ButtonB,
|
||||
ButtonR1,
|
||||
ButtonL1,
|
||||
ButtonR2,
|
||||
ButtonL2,
|
||||
ButtonR3,
|
||||
ButtonL3,
|
||||
ButtonStart,
|
||||
ButtonSelect,
|
||||
DPadLeft,
|
||||
DPadRight,
|
||||
DPadUp,
|
||||
DPadDown,
|
||||
Thumbstick1,
|
||||
Thumbstick2
|
||||
}
|
||||
|
||||
public enum LeftRight
|
||||
{
|
||||
Left,
|
||||
@ -515,6 +779,19 @@ namespace RobloxFiles.Enums
|
||||
Bounce
|
||||
}
|
||||
|
||||
public enum ProximityPromptExclusivity
|
||||
{
|
||||
OnePerButton,
|
||||
OneGlobally,
|
||||
AlwaysShow
|
||||
}
|
||||
|
||||
public enum ProximityPromptStyle
|
||||
{
|
||||
Default,
|
||||
Custom
|
||||
}
|
||||
|
||||
public enum R15CollisionType
|
||||
{
|
||||
OuterBox,
|
||||
|
Reference in New Issue
Block a user