using System; using System.Threading.Tasks; using MotionFramework; using UnityEngine; using UnityEngine.Serialization; namespace DefaultNamespace { public class ToolsPackSceneManager : MonoBehaviour { [SerializeField] private ToolsPackScene toolsPackScene; private void Start() { MotionEngine.GetModule().SetToolsPackScene(toolsPackScene); } } }