Creates a plane visible by a camera.


## Description
no description
## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>direction</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>axis perpendicular to the plane</td>
</tr>
<tr>
	<td>offset</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>plane offset</td>
</tr>
<tr>
	<td>useSegmentsCount</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>defines if the plane resolution is sets via the number of segments or via the step size</td>
</tr>
<tr>
	<td>stepSize</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>step size</td>
</tr>
<tr>
	<td>segments</td>
	<td><div class='bg-teal-800 px-2 py-px text-white rounded-sm'>vector2</div></td>
	<td>segments count</td>
</tr>
<tr>
	<td>sizeMult</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>multiplies the size of the plane. This can be useful to scale down the plane. While it would cover a smaller part of the view, it would be faster to create</td>
</tr>
<tr>
	<td>updateOnWindowResize</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>update on window resize</td>
</tr>
<tr>
	<td>update</td>
	<td><div class='bg-cyan-800 px-2 py-px text-white rounded-sm'>button</div></td>
	<td>update</td>
</tr>
</table>