24 lines
631 B
C#
24 lines
631 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class OnePageThree : MonoBehaviour
|
|
{
|
|
private void OnEnable()
|
|
{
|
|
Debug.Log(GameManager.Instance.infoTGo.text);
|
|
GameManager.Instance.infoTGo.text = GameManager.Instance.infoShow.ParseClickableText("你好啊,我是你的助手小知\r\n你想了解什么呢?\r\n高亮的部分可以点击哦!\r\n快来跟我一起学习吧\r\n\n\n[我想进入上一阶段的学习]\r\n[我结束今天的学习]");
|
|
}
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|