Warcorrespondents/Assets/Scripts/IndexRecoder.cs
Roman beffb4acd1 1.修改了电报机的交互界面
2.完成了翻译和对比功能框架
3.完成“连续输入八个点就清除所有输入”的功能、
4.替换了玩家的贴图
2021-07-03 21:34:47 +08:00

27 lines
788 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class IndexRecoder : MonoBehaviour
{
// Start is called before the first frame update
public float playerMoveSpeed;//角色普通移动速度
public float playerJumpSpeed;//角色跳跃力度
public float bulletSpeed;//子弹速度
public float runSpeedMultiple;//角色跑步的时候,速度是普通状态的多少倍
public float dotRoLineTime;//判定输入为点还是横线的界限时间
public Dictionary<string, string> codeBook = new Dictionary<string, string>();
void Start()
{
GameObject.DontDestroyOnLoad(gameObject);
codeBook.Add("..--","123");
}
// Update is called once per frame
void Update()
{
}
}