ClipsDescendants doesn't default to true...?

This commit is contained in:
Max 2022-06-29 13:44:57 -05:00
parent bb64900471
commit cef1651c22
3 changed files with 1 additions and 3 deletions

View File

@ -1366,7 +1366,7 @@ namespace RobloxFiles
public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53); public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53);
public BorderMode BorderMode = BorderMode.Outline; public BorderMode BorderMode = BorderMode.Outline;
public int BorderSizePixel = 1; public int BorderSizePixel = 1;
public bool ClipsDescendants = true; public bool ClipsDescendants = false;
[Obsolete] [Obsolete]
public bool Draggable; public bool Draggable;

Binary file not shown.

View File

@ -203,7 +203,6 @@ namespace RobloxFiles
/// <summary> /// <summary>
/// Returns true if the provided instance inherits from the provided instance type. /// Returns true if the provided instance inherits from the provided instance type.
/// </summary> /// </summary>
[Obsolete("Use the `is` operator instead.")]
public bool IsA<T>() where T : Instance public bool IsA<T>() where T : Instance
{ {
return this is T; return this is T;
@ -215,7 +214,6 @@ namespace RobloxFiles
/// </summary> /// </summary>
/// <typeparam name="T">The type of Instance to cast to.</typeparam> /// <typeparam name="T">The type of Instance to cast to.</typeparam>
/// <returns>The instance as the type '<typeparamref name="T"/>' if it can be converted, or null.</returns> /// <returns>The instance as the type '<typeparamref name="T"/>' if it can be converted, or null.</returns>
[Obsolete("Use the `as` operator instead.")]
public T Cast<T>() where T : Instance public T Cast<T>() where T : Instance
{ {
return this as T; return this as T;