上海虹口龙之梦项目
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.
 
 
 
 

37 lines
1016 B

using UnityEngine;
/// <summary>
/// 设备设施属性配置
/// <summary>
public class EquipmentAttributeConfig
{
public string Id { get; set; }
/// <summary>
/// 是否有BoxCollider
/// </summary>
public bool IsBoxCollider { get; set; }
/// <summary>
/// 盒子碰撞器中心
/// </summary>
public Vector3 BoxColliderCenter { get; set; }
/// <summary>
/// 盒子碰撞器大小
/// </summary>
public Vector3 BoxColliderSize { get; set; }
/// <summary>
/// 是否有MeshCollider
/// </summary>
public bool IsMeshCollider { get; set; }
/// <summary>
/// 设备类型
/// </summary>
public EquipmentType Type { get; set; }
/// <summary>
/// 是否有设备消息接收
/// </summary>
public bool IsEquipmentDataListening { get; set; }
public string ufIconName { get; set; }
public float ufDistanceY { get; set; }
public bool ufChangeFloor { get; set; }
public int ufFloorNumber { get; set; }
}