24 lines
665 B
C#
24 lines
665 B
C#
using DefaultNamespace;
|
|
using DefaultNamespace.ProcessMode;
|
|
using MotionFramework;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class TeachingGotoScene : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
if (MotionEngine.GetModule<DataConfigManager>().GetProcessMode() == ProcessMode.Teaching ||
|
|
MotionEngine.GetModule<DataConfigManager>().GetProcessMode() == ProcessMode.Training)//HQB
|
|
MotionEngine.GetModule<AnimationProcessManager>().HandleClick("ǰÍùÏÖ³¡");
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|