Normalizes an attribute.


## Description

Finds the min and max of an attribute and normalizes its value between 0 and 1.
For vector attributes, it can also set them to a length of 1.


## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>mode</td>
	<td><div class='bg-orange-800 px-2 py-px text-white rounded-sm'>integer</div></td>
	<td>defines if the value should be normalized between 0 and 1, or for vectors if the length should be 1</td>
</tr>
<tr>
	<td>name</td>
	<td><div class='bg-purple-800 px-2 py-px text-white rounded-sm'>string</div></td>
	<td>attribute to normalize</td>
</tr>
<tr>
	<td>changeName</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>toggle to change the name of the attribute</td>
</tr>
<tr>
	<td>newName</td>
	<td><div class='bg-purple-800 px-2 py-px text-white rounded-sm'>string</div></td>
	<td>new attribute name</td>
</tr>
</table>