44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using DefaultNamespace.ProcessMode;
|
|
using Framework.Manager;
|
|
using MotionFramework;
|
|
using UnityEngine;
|
|
using TMPro;
|
|
using UnityEngine.UI;
|
|
|
|
/// <summary>
|
|
/// 单据基础类
|
|
/// </summary>
|
|
public class DocumentScript : MonoBehaviour
|
|
{
|
|
/// <summary>
|
|
/// 所有输入框
|
|
/// </summary>
|
|
public List<TMP_InputField> tMP_InputFields;
|
|
|
|
/// <summary>
|
|
/// 检查高亮物体
|
|
/// </summary>
|
|
public List<GameObject> HighlightObjsCheck;
|
|
|
|
/// <summary>
|
|
/// 输入高亮物体
|
|
/// </summary>
|
|
public List<GameObject> HighlightObjsInput;
|
|
|
|
public Button btclose;
|
|
|
|
private void Start()
|
|
{
|
|
// btclose.onClick.AddListener(() =>
|
|
// {
|
|
// if (MotionEngine.GetModule<ProcessManager>().GetCurrentStepTitle() == "检查附件及产品相关资料")
|
|
// {
|
|
// Debug.Log("1111111111111111111111111");
|
|
// TutorialGuideManager.Instance.TriggerNextGuide();
|
|
// }
|
|
// });
|
|
}
|
|
} |