This commit is contained in:
parent
f41a25325d
commit
8b84744a76
|
@ -10010,7 +10010,7 @@ MonoBehaviour:
|
||||||
TurntableSpeed: 9
|
TurntableSpeed: 9
|
||||||
DetectionRange: 3
|
DetectionRange: 3
|
||||||
NearBlindArea: 0
|
NearBlindArea: 0
|
||||||
BatchStandardProcessingCapability: 31
|
RCS:
|
||||||
DetectionSuccessRate: 83
|
DetectionSuccessRate: 83
|
||||||
MinimumDetectionVelocity: 3
|
MinimumDetectionVelocity: 3
|
||||||
RangeResolution: 2
|
RangeResolution: 2
|
||||||
|
@ -10019,7 +10019,7 @@ MonoBehaviour:
|
||||||
PitchBeamwidth: 13
|
PitchBeamwidth: 13
|
||||||
detectionRadius: 3000
|
detectionRadius: 3000
|
||||||
nearBlindArea: 5
|
nearBlindArea: 5
|
||||||
NumberOfProbes: 31
|
rcs: 0
|
||||||
minCamera: {fileID: 1822639428928488196}
|
minCamera: {fileID: 1822639428928488196}
|
||||||
imageprs: {fileID: 8234605787508067104}
|
imageprs: {fileID: 8234605787508067104}
|
||||||
rawImage: {fileID: 2648302242586125239}
|
rawImage: {fileID: 2648302242586125239}
|
||||||
|
|
|
@ -81,7 +81,7 @@ public class RadarManger : MonoBehaviour
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 批量标处理能力
|
/// 批量标处理能力
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string BatchStandardProcessingCapability;
|
public string RCS;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 探测成功率
|
/// 探测成功率
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -119,7 +119,7 @@ public class RadarManger : MonoBehaviour
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 批量标处理能力
|
/// 批量标处理能力
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int NumberOfProbes = 0;
|
public int rcs = 0;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 渲染小地图摄像机
|
/// 渲染小地图摄像机
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -282,9 +282,9 @@ public class RadarManger : MonoBehaviour
|
||||||
//Debug.LogError(NearBlindArea);
|
//Debug.LogError(NearBlindArea);
|
||||||
nearBlindArea = float.Parse(NearBlindArea);
|
nearBlindArea = float.Parse(NearBlindArea);
|
||||||
break;
|
break;
|
||||||
case "批量标处理能力:":
|
case "RCS:":
|
||||||
BatchStandardProcessingCapability = weaponitemone[i].para_value;
|
RCS = weaponitemone[i].para_value;
|
||||||
NumberOfProbes = int.Parse(BatchStandardProcessingCapability);
|
rcs = int.Parse(RCS);
|
||||||
break;
|
break;
|
||||||
case "探测成功率:":
|
case "探测成功率:":
|
||||||
DetectionSuccessRate = weaponitemone[i].para_value;
|
DetectionSuccessRate = weaponitemone[i].para_value;
|
||||||
|
|
Loading…
Reference in New Issue