mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-22 23:28:43 -05:00
17 lines
380 B
C#
Executable File
17 lines
380 B
C#
Executable File
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using SO;
|
|
using SO.Channels;
|
|
using UnityEngine;
|
|
|
|
public class Startup : MonoBehaviour
|
|
{
|
|
[SerializeField] private MachineSO machine;
|
|
[SerializeField] private MachineChangeChannelSO machineChangeChannel;
|
|
|
|
private void Start()
|
|
{
|
|
machineChangeChannel.RaiseEvent(machine);
|
|
}
|
|
}
|