2019-07-01 21:51:33 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Plane.Copters
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 定义用于设置飞行器部分可编辑的属性
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial interface ICopterAttribute
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 飞行器摆放时地面的相对高度
|
|
|
|
|
/// </summary>
|
|
|
|
|
float GroundAlt { get; set; }
|
2020-05-03 12:15:51 +08:00
|
|
|
|
float RetainInt{ get; }
|
2021-04-02 01:18:56 +08:00
|
|
|
|
//模拟飞行更新间隔
|
|
|
|
|
int sim_update_int { get; set; }
|
2023-12-04 23:48:14 +08:00
|
|
|
|
float maxspeed_xy { get; set; }
|
|
|
|
|
float maxspeed_up { get; set; }
|
|
|
|
|
float maxspeed_down { get; set; }
|
|
|
|
|
float acc_z { get; set; }
|
|
|
|
|
float acc_xy { get; set; }
|
|
|
|
|
|
2019-07-01 21:51:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|