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.
25 lines
960 B
25 lines
960 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public static class TaskInfo
|
|
{
|
|
/// <summary>
|
|
/// 关卡1
|
|
/// </summary>
|
|
public static string task1info = "1-请选择解决方式";
|
|
public static string task2info = "2-请确认周围环境是否安全";
|
|
public static string task3info = "3-请选择进行的操作";
|
|
public static Color color1 = new Color32(255, 255, 255, 255);//操作未完成文本颜色
|
|
public static Color color2 = Color.gray;//操作完成文本颜色
|
|
|
|
/// <summary>
|
|
/// 关卡2
|
|
/// </summary>
|
|
public static string task4info = "1-判断被救者有无意识";
|
|
public static string task5info = "2-观察被救者部位";
|
|
public static string task6info = "3-选择合适的操作";
|
|
public static Color color3 = new Color32(255, 255, 255, 255);//操作未完成文本颜色
|
|
public static Color color4 = Color.gray;//操作完成文本颜色
|
|
}
|