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.
38 lines
739 B
38 lines
739 B
1 year ago
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
public class DriveRouteData
|
||
|
{
|
||
|
public string ImageUrl;
|
||
|
public List<RouteData> Sources;
|
||
|
}
|
||
|
|
||
|
public class RouteData
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 原始名称
|
||
|
/// </summary>
|
||
|
public string OriginaName { get; set; }
|
||
|
/// <summary>
|
||
|
/// Id
|
||
|
/// </summary>
|
||
|
public string Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 位置
|
||
|
/// </summary>
|
||
|
public Vector3 Position { get; set; }
|
||
|
/// <summary>
|
||
|
/// 旋转
|
||
|
/// </summary>
|
||
|
public Vector3 Rotation { get; set; }
|
||
|
/// <summary>
|
||
|
/// 信息
|
||
|
/// </summary>
|
||
|
public string Info { get; set; }
|
||
|
/// <summary>
|
||
|
/// 父物体
|
||
|
/// </summary>
|
||
|
public string Parent { get; set; }
|
||
|
|
||
|
}
|
||
|
|