A game about forced loneliness, made by TACStudios
1namespace Unity.VisualScripting
2{
3 /// <summary>
4 /// Called the first time a machine is enabled before any update method.
5 /// </summary>
6 [UnitCategory("Events/Lifecycle")]
7 [UnitOrder(2)]
8 [UnitTitle("On Start")]
9 public sealed class Start : MachineEventUnit<EmptyEventArgs>
10 {
11 protected override string hookName => EventHooks.Start;
12 }
13}