2021-07-01 03:08:38 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
2021-07-01 23:35:25 +08:00
|
|
|
using UnityEngine.UI;
|
2021-07-01 03:08:38 +08:00
|
|
|
|
2021-07-01 23:35:25 +08:00
|
|
|
public class Machine : Interactive
|
2021-07-01 03:08:38 +08:00
|
|
|
{
|
|
|
|
// Start is called before the first frame update
|
2021-07-01 23:35:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
public Text codeTextView;
|
2021-07-01 03:08:38 +08:00
|
|
|
void Start()
|
|
|
|
{
|
2021-07-01 23:35:25 +08:00
|
|
|
//m_interface = GameObject.Find("MachinePanel");
|
2021-07-01 03:08:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2021-07-01 23:35:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
public override void Coding(string temp)
|
|
|
|
{
|
|
|
|
codeTextView.text += temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-01 03:08:38 +08:00
|
|
|
}
|