Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


bool3

Constructs a bool3 vector from three bool values.
Read time 1 minuteLast updated 12 days ago

Definition

  • Type: Constructor
  • Namespace: Unity.Mathematics
  • Assembly: UnityEngine.MathematicsModule

bool3(bool, bool, bool)

Constructs a bool3 vector from three bool values.
public bool3(bool x, bool y, bool z)

Parameters

The constructed vector's x component will be set to this value.

The constructed vector's y component will be set to this value.

The constructed vector's z component will be set to this value.

bool3(bool, bool2)

Constructs a bool3 vector from a bool value and a bool2 vector.
public bool3(bool x, bool2 yz)

Parameters

The constructed vector's x component will be set to this value.

The constructed vector's yz components will be set to this value.

bool3(bool2, bool)

Constructs a bool3 vector from a bool2 vector and a bool value.
public bool3(bool2 xy, bool z)

Parameters

The constructed vector's xy components will be set to this value.

The constructed vector's z component will be set to this value.

bool3(bool3)

Constructs a bool3 vector from a bool3 vector.
public bool3(bool3 xyz)

Parameters

The constructed vector's xyz components will be set to this value.

bool3(bool)

Constructs a bool3 vector from a single bool value by assigning it to every component.
public bool3(bool v)

Parameters

bool to convert to bool3