35 lines
594 B
C#
35 lines
594 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 数据类
|
|
/// </summary>
|
|
[System.Serializable]
|
|
public class ShowPoint
|
|
{
|
|
/// <summary>
|
|
/// 展示点顺序
|
|
/// </summary>
|
|
public string ObjectID;
|
|
|
|
/// <summary>
|
|
/// 展示点名称
|
|
/// </summary>
|
|
public string Title;
|
|
|
|
/// <summary>
|
|
/// 所在展厅
|
|
/// </summary>
|
|
public int ZT_Index;
|
|
|
|
/// <summary>
|
|
/// 展示点位置向量
|
|
/// </summary>
|
|
public Vector3 Position;
|
|
|
|
/// <summary>
|
|
/// 展示点旋转向量
|
|
/// </summary>
|
|
public Vector3 Rotation;
|
|
} |