A game about forced loneliness, made by TACStudios
1using UnityEngine;
2
3namespace Unity.VisualScripting
4{
5 /// <summary>
6 /// Returns the positive version of a scalar.
7 /// </summary>
8 [UnitCategory("Math/Scalar")]
9 [UnitTitle("Absolute")]
10 public sealed class ScalarAbsolute : Absolute<float>
11 {
12 protected override float Operation(float input)
13 {
14 return Mathf.Abs(input);
15 }
16 }
17}