Warcorrespondents/Assets/Scripts/WhenFinishFathersCode.cs
Roman e6f51b11d9 1.更改和完善了打电码系统,目前是5码一数字,。-。-。代表全部清除。
2.完成了电码的句子系统和输入完成检测系统。
3.初步攥写了事件系统,目前可以自定义事件。目前已经开始写的事件是打完父亲的电码的事件。
2021-07-18 23:58:09 +08:00

24 lines
415 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WhenFinishFathersCode : Event
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public override void OnCall()
{
Debug.Log("打完了,执行下一步的代码请写这里");
}
}