Version: Unity 6.5 Alpha (6000.5)
LanguageEnglish
  • C#

math.all

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static bool all(bool2 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are true, false otherwise.

Description

Returns true if all components of the input bool2 vector are true, false otherwise.


Declaration

public static bool all(bool3 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are true, false otherwise.

Description

Returns true if all components of the input bool3 vector are true, false otherwise.


Declaration

public static bool all(bool4 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are true, false otherwise.

Description

Returns true if all components of the input bool4 vector are true, false otherwise.


Declaration

public static bool all(int2 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input int2 vector are non-zero, false otherwise.


Declaration

public static bool all(int3 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input int3 vector are non-zero, false otherwise.


Declaration

public static bool all(int4 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input int4 vector are non-zero, false otherwise.


Declaration

public static bool all(uint2 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input uint2 vector are non-zero, false otherwise.


Declaration

public static bool all(uint3 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input uint3 vector are non-zero, false otherwise.


Declaration

public static bool all(uint4 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input uint4 vector are non-zero, false otherwise.


Declaration

public static bool all(float2 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input float2 vector are non-zero, false otherwise.


Declaration

public static bool all(float3 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input float3 vector are non-zero, false otherwise.


Declaration

public static bool all(float4 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input float4 vector are non-zero, false otherwise.


Declaration

public static bool all(double2 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input double2 vector are non-zero, false otherwise.


Declaration

public static bool all(double3 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input double3 vector are non-zero, false otherwise.


Declaration

public static bool all(double4 x);

Parameters

Parameter Description
x Vector of values to compare.

Returns

bool True if all the components of x are non-zero, false otherwise.

Description

Returns true if all components of the input double4 vector are non-zero, false otherwise.