diff --git a/Generated/Classes.cs b/Generated/Classes.cs index b267e77..b3439f6 100644 --- a/Generated/Classes.cs +++ b/Generated/Classes.cs @@ -1366,7 +1366,7 @@ namespace RobloxFiles public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53); public BorderMode BorderMode = BorderMode.Outline; public int BorderSizePixel = 1; - public bool ClipsDescendants = true; + public bool ClipsDescendants = false; [Obsolete] public bool Draggable; diff --git a/RobloxFileFormat.dll b/RobloxFileFormat.dll index 55f5ef8..d846058 100644 Binary files a/RobloxFileFormat.dll and b/RobloxFileFormat.dll differ diff --git a/Tree/Instance.cs b/Tree/Instance.cs index b284dfc..3ea5bcd 100644 --- a/Tree/Instance.cs +++ b/Tree/Instance.cs @@ -203,7 +203,6 @@ namespace RobloxFiles /// /// Returns true if the provided instance inherits from the provided instance type. /// - [Obsolete("Use the `is` operator instead.")] public bool IsA() where T : Instance { return this is T; @@ -215,7 +214,6 @@ namespace RobloxFiles /// /// The type of Instance to cast to. /// The instance as the type '' if it can be converted, or null. - [Obsolete("Use the `as` operator instead.")] public T Cast() where T : Instance { return this as T;