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.
15 lines
481 B
15 lines
481 B
3 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
//Author:YHD
|
||
|
public class BaseGCS_SSRYCtrl : MonoBehaviour {
|
||
|
|
||
|
|
||
|
public List<Vector3> PosList = new List<Vector3>();
|
||
|
public int value = 1;//疏散人员切换疏散点速度(1-10倍),默认最快10倍速度(一秒切换一次)
|
||
|
public int index = 0;
|
||
|
|
||
|
public bool flag;//疏散人员是否开始按设置的疏散点巡逻
|
||
|
// Use this for initialization
|
||
|
}
|