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
490 B
11 lines
490 B
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;//操作完成文本颜色
|
|
}
|