A game about forced loneliness, made by TACStudios
1namespace Unity.VisualScripting
2{
3 /// <summary>
4 /// Returns the quotient of two scalars.
5 /// </summary>
6 [UnitCategory("Math/Scalar")]
7 [UnitTitle("Divide")]
8 public sealed class ScalarDivide : Divide<float>
9 {
10 protected override float defaultDividend => 1;
11
12 protected override float defaultDivisor => 1;
13
14 public override float Operation(float a, float b)
15 {
16 return a / b;
17 }
18 }
19}