You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
460 B

2 years ago
using UnityEngine;
public static class Level1Const
{
public static string operate1Info = "1-选择施救方式";
public static string operate2Info = "2-请确认周围环境是否安全";
public static string operate3Info = "3-请选择进行的操作";
public static Color operateFrontColor = new Color32(255, 255, 255, 255);//操作未完成文本颜色
public static Color operateAfterColor = Color.gray;//操作完成文本颜色
}