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 BorderMode BorderMode = BorderMode.Outline;
public int BorderSizePixel = 1;
public bool ClipsDescendants = true;
public bool ClipsDescendants = false;
[Obsolete]
public bool Draggable;

Binary file not shown.

View File

@ -203,7 +203,6 @@ namespace RobloxFiles
/// <summary>
/// Returns true if the provided instance inherits from the provided instance type.
/// </summary>
[Obsolete("Use the `is` operator instead.")]
public bool IsA<T>() where T : Instance
{
return this is T;
@ -215,7 +214,6 @@ namespace RobloxFiles
/// </summary>
/// <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>
[Obsolete("Use the `as` operator instead.")]
public T Cast<T>() where T : Instance
{
return this as T;