From f6afccec418babf1865996d128a4950a28f52860 Mon Sep 17 00:00:00 2001 From: HolterPhylo Date: Thu, 8 Feb 2024 16:25:49 -0500 Subject: [PATCH] Update for 13407450 --- .../GcBackgroundSpaceEncounterInfo.cs | 4 +- .../GameComponents/GcExperienceSpawnTable.cs | 2 +- .../GcMissionConditionCurrentPlanetVisited.cs | 3 +- .../GcMissionConditionMissionCompleted.cs | 3 +- .../GcMissionConditionPlanetDiscoveries.cs | 12 + ...cMissionConditionPlanetPlantDiscoveries.cs | 8 - ...GcMissionConditionThisMissionStageIndex.cs | 8 + .../GcPulseEncounterSpawnObject.cs | 3 +- libMBIN/Source/NMS/Globals/GcUIGlobals.cs | 2769 +++++++++-------- libMBIN/Source/Version.cs | 2 +- libMBIN/libMBIN-Shared.projitems | 3 +- 11 files changed, 1417 insertions(+), 1400 deletions(-) create mode 100644 libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetDiscoveries.cs delete mode 100644 libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetPlantDiscoveries.cs create mode 100644 libMBIN/Source/NMS/GameComponents/GcMissionConditionThisMissionStageIndex.cs diff --git a/libMBIN/Source/NMS/GameComponents/GcBackgroundSpaceEncounterInfo.cs b/libMBIN/Source/NMS/GameComponents/GcBackgroundSpaceEncounterInfo.cs index 6e816a498..f8946be90 100644 --- a/libMBIN/Source/NMS/GameComponents/GcBackgroundSpaceEncounterInfo.cs +++ b/libMBIN/Source/NMS/GameComponents/GcBackgroundSpaceEncounterInfo.cs @@ -2,7 +2,7 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0xF022D46259E222D8, NameHash = 0x9803054FC61F20F4)] + [NMS(GUID = 0x57D664ECDFC788E7, NameHash = 0x9803054FC61F20F4)] public class GcBackgroundSpaceEncounterInfo : NMSTemplate { /* 0x00 */ public NMSString0x10 Id; @@ -12,6 +12,6 @@ public class GcBackgroundSpaceEncounterInfo : NMSTemplate /* 0x30 */ public float SpawnDistance; /* 0x34 */ public float MinDuration; /* 0x38 */ public float DespawnDistance; - /* 0x3C */ public GcPulseEncounterSpawnObject Encounter; + /* 0x40 */ public GcPulseEncounterSpawnObject Encounter; } } diff --git a/libMBIN/Source/NMS/GameComponents/GcExperienceSpawnTable.cs b/libMBIN/Source/NMS/GameComponents/GcExperienceSpawnTable.cs index 3bf020658..d6f2a002f 100644 --- a/libMBIN/Source/NMS/GameComponents/GcExperienceSpawnTable.cs +++ b/libMBIN/Source/NMS/GameComponents/GcExperienceSpawnTable.cs @@ -3,7 +3,7 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0xEBD87AB92DC14AE9, NameHash = 0x5F4CA33999F0D259)] + [NMS(GUID = 0x71941C5EACC5E4EA, NameHash = 0x5F4CA33999F0D259)] public class GcExperienceSpawnTable : NMSTemplate { /* 0x000 */ public List FlybySpawns; diff --git a/libMBIN/Source/NMS/GameComponents/GcMissionConditionCurrentPlanetVisited.cs b/libMBIN/Source/NMS/GameComponents/GcMissionConditionCurrentPlanetVisited.cs index 4367ea10b..c29a49777 100644 --- a/libMBIN/Source/NMS/GameComponents/GcMissionConditionCurrentPlanetVisited.cs +++ b/libMBIN/Source/NMS/GameComponents/GcMissionConditionCurrentPlanetVisited.cs @@ -1,7 +1,8 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0xEBEF5DA2F06B2B34, NameHash = 0x7CCE260D959425EE)] + [NMS(GUID = 0x25BE49A604767DC8, NameHash = 0x7CCE260D959425EE)] public class GcMissionConditionCurrentPlanetVisited : NMSTemplate { + /* 0x0 */ public bool JustTestSeasonStartPlanetHack; } } diff --git a/libMBIN/Source/NMS/GameComponents/GcMissionConditionMissionCompleted.cs b/libMBIN/Source/NMS/GameComponents/GcMissionConditionMissionCompleted.cs index 402595b1c..a7d1bdb74 100644 --- a/libMBIN/Source/NMS/GameComponents/GcMissionConditionMissionCompleted.cs +++ b/libMBIN/Source/NMS/GameComponents/GcMissionConditionMissionCompleted.cs @@ -1,11 +1,12 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0x7D58868B17FADC8C, NameHash = 0xC28C1E8A4FA47E3B)] + [NMS(GUID = 0x2997545CCDDD9AC1, NameHash = 0xC28C1E8A4FA47E3B)] public class GcMissionConditionMissionCompleted : NMSTemplate { /* 0x00 */ public NMSString0x10 MissionID; /* 0x10 */ public int SeasonalMissionSeed; /* 0x14 */ public bool TakeIDFromSeasonData; /* 0x15 */ public bool CalculateTextMissionTargetFromStageIndex; + /* 0x18 */ public int CalculateSeasonalSeedFromStageIndexOffset; } } diff --git a/libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetDiscoveries.cs b/libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetDiscoveries.cs new file mode 100644 index 000000000..3a28a7e88 --- /dev/null +++ b/libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetDiscoveries.cs @@ -0,0 +1,12 @@ +using libMBIN.NMS.GameComponents; + +namespace libMBIN.NMS.GameComponents +{ + [NMS(GUID = 0xD523F943FA186627, NameHash = 0x792A334D3849EEA1)] + public class GcMissionConditionPlanetDiscoveries : NMSTemplate + { + /* 0x0 */ public GcDiscoveryType DiscoveryType; + /* 0x4 */ public float PercentDiscovered; + /* 0x8 */ public bool DeepSearchDoneDiscos; + } +} diff --git a/libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetPlantDiscoveries.cs b/libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetPlantDiscoveries.cs deleted file mode 100644 index 0eba8f674..000000000 --- a/libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetPlantDiscoveries.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace libMBIN.NMS.GameComponents -{ - [NMS(GUID = 0x857D9E297E368730, NameHash = 0x4A4C4CD2576BB99C)] - public class GcMissionConditionPlanetPlantDiscoveries : NMSTemplate - { - /* 0x0 */ public float PercentDiscovered; - } -} diff --git a/libMBIN/Source/NMS/GameComponents/GcMissionConditionThisMissionStageIndex.cs b/libMBIN/Source/NMS/GameComponents/GcMissionConditionThisMissionStageIndex.cs new file mode 100644 index 000000000..99d452579 --- /dev/null +++ b/libMBIN/Source/NMS/GameComponents/GcMissionConditionThisMissionStageIndex.cs @@ -0,0 +1,8 @@ +namespace libMBIN.NMS.GameComponents +{ + [NMS(GUID = 0xA99AE5AA393CACDF, NameHash = 0xA395C630BCD87BBC)] + public class GcMissionConditionThisMissionStageIndex : NMSTemplate + { + /* 0x0 */ public int StageIndex; + } +} diff --git a/libMBIN/Source/NMS/GameComponents/GcPulseEncounterSpawnObject.cs b/libMBIN/Source/NMS/GameComponents/GcPulseEncounterSpawnObject.cs index 12ee22e25..7fe2b310c 100644 --- a/libMBIN/Source/NMS/GameComponents/GcPulseEncounterSpawnObject.cs +++ b/libMBIN/Source/NMS/GameComponents/GcPulseEncounterSpawnObject.cs @@ -2,7 +2,7 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0x9BEFE5D4AA786C4B, NameHash = 0x82C7C611E7625A21)] + [NMS(GUID = 0xDBD6136FBBF407B7, NameHash = 0x82C7C611E7625A21)] public class GcPulseEncounterSpawnObject : NMSTemplate { /* 0x00 */ public TkModelResource Object; @@ -11,5 +11,6 @@ public class GcPulseEncounterSpawnObject : NMSTemplate /* 0x8C */ public float Yaw; /* 0x90 */ public float Roll; /* 0x94 */ public float UpOffset; + /* 0x98 */ public NMSString0x10 TriggerActionOnSpawn; } } diff --git a/libMBIN/Source/NMS/Globals/GcUIGlobals.cs b/libMBIN/Source/NMS/Globals/GcUIGlobals.cs index b8ab1df01..166a5661c 100644 --- a/libMBIN/Source/NMS/Globals/GcUIGlobals.cs +++ b/libMBIN/Source/NMS/Globals/GcUIGlobals.cs @@ -4,1415 +4,1416 @@ namespace libMBIN.NMS.Globals { - [NMS(GUID = 0x361102687B0ACB02, NameHash = 0x95C306B1A90F3E08)] + [NMS(GUID = 0xFB138C7DF7BA18DB, NameHash = 0x95C306B1A90F3E08)] public class GcUIGlobals : NMSTemplate { - /* 0x0000 */ public float StoreDialHoldTime; - /* 0x0004 */ public float StoreDialDecayTime; - /* 0x0008 */ public float StoreDialInnerRadius; - /* 0x000C */ public float StoreDialOuterRadius; - /* 0x0010 */ public Colour StoreDialFillColour; - /* 0x0020 */ public float TrialUpsellDeclineHoldTimeQuick; - /* 0x0024 */ public float TrialUpsellDeclineDecayTimeQuick; - /* 0x0028 */ public float TrialUpsellDeclineHoldTimeSlow; - /* 0x002C */ public float TrialUpsellDeclineDecayTimeSlow; - /* 0x0030 */ public float TrialUpsellDeclineDialInnerRadius; - /* 0x0034 */ public float TrialUpsellDeclineDialOuterRadius; - /* 0x0038 */ public float SeasonEndRewardsPageOpenDelayTime; - /* 0x003C */ public float SeasonEndRewardsMaxScrollRate; - /* 0x0040 */ public GcAudioWwiseEvents SeasonEndAutoHighlightSFX; - /* 0x0044 */ public float SeasonEndAutoHighlightDuration; - /* 0x0048 */ public float SeasonEndAutoHighlightDurationMilestone; - /* 0x004C */ public float ModularCustomisationApplyTime; - /* 0x0050 */ public float HoverPopScaleModification; - /* 0x0054 */ public float HoverPopAnimDuration; - /* 0x0060 */ public Colour WristMenuDefaultBorderColour; - /* 0x0070 */ public Colour WristMenuRepositionableBorderColour; - /* 0x0080 */ public float InWorldUIInteractionDistanceWithEyeTrackingEnabled; - /* 0x0084 */ public float EyeTrackingTimeBeforePopupsActivate; - /* 0x0088 */ public float EyeTrackingPopupLookAwayTime; - /* 0x008C */ public float EyeTrackingCursorBlendRateGameModeSelect; - /* 0x0090 */ public float EyeTrackingCursorBlendRate; - /* 0x0094 */ public float EyeTrackingStickyHoverTime; - /* 0x00A0 */ public Colour NetworkPopupTextEnabledColour; - /* 0x00B0 */ public Colour NetworkPopupTextDisabledColour; - /* 0x00C0 */ public bool ShowDifficultyForBases; - /* 0x00C1 */ public bool ShowPadlockForLockedSettings; - /* 0x00C4 */ public int DebugMedalRank; + /* 0x0000 */ public float TradePageNotifyOffset; + /* 0x0004 */ public float StoreDialHoldTime; + /* 0x0008 */ public float StoreDialDecayTime; + /* 0x000C */ public float StoreDialInnerRadius; + /* 0x0010 */ public float StoreDialOuterRadius; + /* 0x0020 */ public Colour StoreDialFillColour; + /* 0x0030 */ public float TrialUpsellDeclineHoldTimeQuick; + /* 0x0034 */ public float TrialUpsellDeclineDecayTimeQuick; + /* 0x0038 */ public float TrialUpsellDeclineHoldTimeSlow; + /* 0x003C */ public float TrialUpsellDeclineDecayTimeSlow; + /* 0x0040 */ public float TrialUpsellDeclineDialInnerRadius; + /* 0x0044 */ public float TrialUpsellDeclineDialOuterRadius; + /* 0x0048 */ public float SeasonEndRewardsPageOpenDelayTime; + /* 0x004C */ public float SeasonEndRewardsMaxScrollRate; + /* 0x0050 */ public GcAudioWwiseEvents SeasonEndAutoHighlightSFX; + /* 0x0054 */ public float SeasonEndAutoHighlightDuration; + /* 0x0058 */ public float SeasonEndAutoHighlightDurationMilestone; + /* 0x005C */ public float ModularCustomisationApplyTime; + /* 0x0060 */ public float HoverPopScaleModification; + /* 0x0064 */ public float HoverPopAnimDuration; + /* 0x0070 */ public Colour WristMenuDefaultBorderColour; + /* 0x0080 */ public Colour WristMenuRepositionableBorderColour; + /* 0x0090 */ public float InWorldUIInteractionDistanceWithEyeTrackingEnabled; + /* 0x0094 */ public float EyeTrackingTimeBeforePopupsActivate; + /* 0x0098 */ public float EyeTrackingPopupLookAwayTime; + /* 0x009C */ public float EyeTrackingCursorBlendRateGameModeSelect; + /* 0x00A0 */ public float EyeTrackingCursorBlendRate; + /* 0x00A4 */ public float EyeTrackingStickyHoverTime; + /* 0x00B0 */ public Colour NetworkPopupTextEnabledColour; + /* 0x00C0 */ public Colour NetworkPopupTextDisabledColour; + /* 0x00D0 */ public bool ShowDifficultyForBases; + /* 0x00D1 */ public bool ShowPadlockForLockedSettings; + /* 0x00D4 */ public int DebugMedalRank; [NMS(Size = 0x7, EnumType = typeof(GcWonderType.WonderTypeEnum))] - /* 0x00C8 */ public TkTextureResource[] WonderTypeIcons; + /* 0x00D8 */ public TkTextureResource[] WonderTypeIcons; [NMS(Size = 0xB, EnumType = typeof(GcWonderPlanetCategory.WonderPlanetCategoryEnum))] - /* 0x0464 */ public float[] WonderValueModifiersPlanet; + /* 0x0474 */ public float[] WonderValueModifiersPlanet; [NMS(Size = 0xF, EnumType = typeof(GcWonderCreatureCategory.WonderCreatureCategoryEnum))] - /* 0x0490 */ public float[] WonderValueModifiersCreature; + /* 0x04A0 */ public float[] WonderValueModifiersCreature; [NMS(Size = 0x8, EnumType = typeof(GcWonderFloraCategory.WonderFloraCategoryEnum))] - /* 0x04CC */ public float[] WonderValueModifiersFlora; + /* 0x04DC */ public float[] WonderValueModifiersFlora; [NMS(Size = 0x8, EnumType = typeof(GcWonderMineralCategory.WonderMineralCategoryEnum))] - /* 0x04EC */ public float[] WonderValueModifiersMineral; + /* 0x04FC */ public float[] WonderValueModifiersMineral; [NMS(Size = 0xB, EnumType = typeof(GcWonderPlanetCategory.WonderPlanetCategoryEnum))] - /* 0x0510 */ public GcWonderCategoryConfig[] WonderPlanetCategoryConfig; + /* 0x0520 */ public GcWonderCategoryConfig[] WonderPlanetCategoryConfig; [NMS(Size = 0xF, EnumType = typeof(GcWonderCreatureCategory.WonderCreatureCategoryEnum))] - /* 0x0778 */ public GcWonderCategoryConfig[] WonderCreatureCategoryConfig; + /* 0x0788 */ public GcWonderCategoryConfig[] WonderCreatureCategoryConfig; [NMS(Size = 0x8, EnumType = typeof(GcWonderFloraCategory.WonderFloraCategoryEnum))] - /* 0x0AC0 */ public GcWonderCategoryConfig[] WonderFloraCategoryConfig; + /* 0x0AD0 */ public GcWonderCategoryConfig[] WonderFloraCategoryConfig; [NMS(Size = 0x8, EnumType = typeof(GcWonderMineralCategory.WonderMineralCategoryEnum))] - /* 0x0C80 */ public GcWonderCategoryConfig[] WonderMineralCategoryConfig; + /* 0x0C90 */ public GcWonderCategoryConfig[] WonderMineralCategoryConfig; [NMS(Size = 0xD, EnumType = typeof(GcWonderTreasureCategory.WonderTreasureCategoryEnum))] - /* 0x0E40 */ public GcWonderCategoryConfig[] WonderTreasureCategoryConfig; + /* 0x0E50 */ public GcWonderCategoryConfig[] WonderTreasureCategoryConfig; [NMS(Size = 0xB, EnumType = typeof(GcWonderWeirdBasePartCategory.WonderWeirdBasePartCategoryEnum))] - /* 0x1118 */ public GcWonderCategoryConfig[] WonderWeirdBasePartCategoryConfig; + /* 0x1128 */ public GcWonderCategoryConfig[] WonderWeirdBasePartCategoryConfig; [NMS(Size = 0xC, EnumType = typeof(GcWonderCustomCategory.WonderCustomCategoryEnum))] - /* 0x1380 */ public GcWonderCategoryConfig[] WonderCustomCategoryConfig; - /* 0x1620 */ public TkCurveType PadCursorUICurve; - /* 0x1630 */ public Colour JoaoBoxCompletedObjectiveColour; - /* 0x1640 */ public Colour InvSlotGradientBaseColour; - /* 0x1650 */ public float InvSlotGradientFactorMin; - /* 0x1654 */ public float InvSlotGradientFactor; - /* 0x1658 */ public float InvSlotGradientTime; - /* 0x1660 */ public Colour SuperchargePopupColour; - /* 0x1670 */ public Colour SuperchargeGradientBaseColour; - /* 0x1680 */ public Colour SuperchargeGradientBlendColour; - /* 0x1690 */ public Colour SuperchargeGradientTechColour; - /* 0x16A0 */ public float SuperchargeGradientFactorMin; - /* 0x16A4 */ public float SuperchargeGradientFactor; - /* 0x16A8 */ public float SuperchargeGradientTime; - /* 0x16AC */ public float GridDecayRateSwitchValue; - /* 0x16B0 */ public float PadCursorUICurveStrength; - /* 0x16B4 */ public bool ReplaceItemBarWithNumbers; - /* 0x16B8 */ public NMSString0x10 DebugInventoryHint; - /* 0x16C8 */ public int MaxSubstanceMaxAmountForAmountFraction; - /* 0x16CC */ public bool UseSquareSlots; - /* 0x16CD */ public bool BigPicking; - /* 0x16CE */ public bool BigPickingUsesNumbers; - /* 0x16D0 */ public float FreighterMegaWarpTransitionTime; - /* 0x16D4 */ public bool EnablePopupUses; - /* 0x16D5 */ public bool TechBoxesCanStack; - /* 0x16D8 */ public int UnknownWordsToShowInCatalogue; - /* 0x16DC */ public bool UseIntermediateMissionGiverOptions; - /* 0x16E0 */ public float SentinelsDisabledHUDMessageTime; - /* 0x16E4 */ public float UseZoomedOutBuildCamRadius; - /* 0x16E8 */ public float ParagraphAutoScrollSpeed; - /* 0x16EC */ public bool AutoScrollParagraphs; - /* 0x16F0 */ public float GameModeSelectColourFadeTime; - /* 0x16F4 */ public float EggModifiyAnimMaxSize; - /* 0x16F8 */ public float EggModifiyAnimLoopTime; - /* 0x16FC */ public int SeasonFinalStageIndex; - /* 0x1700 */ public List SeasonalRingTable; - /* 0x1710 */ public float SeasonalRingMultiplier; - /* 0x1714 */ public float SeasonalRingPulseTime; - /* 0x1718 */ public float SeasonalRingChangeTime; - /* 0x171C */ public float MinSeasonPlayTimeInDays; - /* 0x1720 */ public float ExpeditionStageChangeTime; - /* 0x1724 */ public float MilestoneStingDisplayTime; - /* 0x1728 */ public float StageStingDisplayTime; - /* 0x172C */ public float EndOfSeasonAlertDelay; - /* 0x1730 */ public int ShowHoursIfLessThan; - /* 0x1734 */ public int ShowDaysIfLessThan; - /* 0x1738 */ public int ShowWeeksIfLessThan; - /* 0x1740 */ public NMSString0x10 ExplorationLogMissionID; - /* 0x1750 */ public int ForceOpenHazardProtInventoryThreshold; - /* 0x1754 */ public float PlanetDataExtraRadius; - /* 0x1758 */ public float StackSizeRateChangeRate; - /* 0x175C */ public float StackSizeChangeMinRate; - /* 0x1760 */ public float StackSizeChangeMaxRate; - /* 0x1764 */ public float ClosestDoorMarkerBuffer; - /* 0x1768 */ public bool SkipShopIntro; - /* 0x176C */ public float ZoomFactorOverride; - /* 0x1770 */ public float HandheldZoomFactor; - /* 0x1774 */ public float PlacedMarkerFadeTime; - /* 0x1778 */ public float LoadingTravelDistance; - /* 0x177C */ public float LoadingScreenTravelSpeed; - /* 0x1780 */ public float LoadingScreenTime; - /* 0x1784 */ public float OSDMessagePauseOffscreenAngle; - /* 0x1788 */ public float QuickMenuCentrePos; - /* 0x178C */ public float QuickMenuSideOffset; - /* 0x1790 */ public float QuickMenuCentreSideOffset; - /* 0x1794 */ public float InWorldInteractLabelScale; - /* 0x1798 */ public float InWorldInteractLabelScaleV2; - /* 0x179C */ public float InWorldScreenScaleDistance; - /* 0x17A0 */ public Vector2f InWorldInteractLabelAlignment; - /* 0x17B0 */ public Vector3f InWorldInteractLabelCentreOffset; - /* 0x17C0 */ public Vector3f InWorldInteractLabelTopOffset; - /* 0x17D0 */ public Vector3f InWorldInteractLabelLineOffset; - /* 0x17E0 */ public Vector3f InWorldStaffBinocsScreenOffset; - /* 0x17F0 */ public float InWorldInteractLabelMinHeadOffset; - /* 0x17F4 */ public float InWorldInteractLabelNearDistance; - /* 0x17F8 */ public float InWorldInteractLabelNearRange; - /* 0x17FC */ public float InWorldInteractLabelFarDistance; - /* 0x1800 */ public float InWorldInteractLabelFarRange; - /* 0x1804 */ public float ShipHUDMarkerHideDistance; - /* 0x1808 */ public float ShipHUDMarkerOffset; - /* 0x180C */ public float ExocraftHUDMarkerHideDistance; - /* 0x1810 */ public float ExocraftHUDMarkerOffset; - /* 0x1814 */ public float PetSlotUnlockBounceTime; - /* 0x1818 */ public float PetHUDMarkerExtraFollowInfoDistance; - /* 0x181C */ public float PetHUDMarkerHideDistance; - /* 0x1820 */ public float PetHUDMarkerHideDistanceShort; - /* 0x1824 */ public float PetHUDMarkerOffset; - /* 0x1828 */ public float PetMoodMarkerOffset; - /* 0x182C */ public float BeaconHUDMarkerOffset; - /* 0x1830 */ public Vector2f BinocularEdgeFade; - /* 0x1838 */ public float BinocularScreenOffset; - /* 0x183C */ public float BinocularScreenScale; - /* 0x1840 */ public float BinocularMarkerSideAngle; - /* 0x1844 */ public float BinocularMarkerUpAngle; - /* 0x1848 */ public bool BinocularScanScreen; - /* 0x184C */ public float BinocularsNearIconOpacity; - /* 0x1850 */ public float BinocularsNearIconDist; - /* 0x1854 */ public float BinocularsNearIconFadeDist; - /* 0x1858 */ public float BinocularsMidIconOpacity; - /* 0x185C */ public float BinocularsFarIconOpacity; - /* 0x1860 */ public float BinocularsFarIconDist; - /* 0x1864 */ public float BinocularsFarIconFadeDist; - /* 0x1868 */ public float AlignmentRequiredToDisableFrostedGlass; - /* 0x1870 */ public Vector3f BinocularPanelLinePointOffset; - /* 0x1880 */ public float GalmapDiscoveryOffsetVR; - /* 0x1884 */ public float FrontendOffsetVR; - /* 0x1888 */ public float ProjectorScale; - /* 0x188C */ public float MaxProjectorDistanceFromDefault; - /* 0x1890 */ public float ProjectorGrabResetTime; - /* 0x1894 */ public bool AllowProjectorRepositioning; - /* 0x1898 */ public float MaxProjectorGrabDistance; - /* 0x189C */ public float ProjectorGrabDistanceBias; - /* 0x18A0 */ public float ProjectorGrabBorderPercent; - /* 0x18A4 */ public float CockpitGlassFrostTime; - /* 0x18A8 */ public float CockpitGlassDefrostTime; - /* 0x18AC */ public float TextPrintoutMultiplier; - /* 0x18B0 */ public float TextPrintoutMultiplierAlien; - /* 0x18B4 */ public bool EnableHandMenuButtons; - /* 0x18B5 */ public bool AllowInWorldDebugBorders; - /* 0x18B8 */ public Vector2f MarkerDistanceVRAlignment; - /* 0x18C0 */ public float CompassIconOffsetVR; - /* 0x18C4 */ public float LowerHelmetScreenScale; - /* 0x18C8 */ public float LowerHelmetScreenPitch; - /* 0x18D0 */ public Vector3f LowerHelmetScreenOffset; - /* 0x18E0 */ public float InWorldScreenMinScreenDistance; - /* 0x18E4 */ public float InWorldScreenForwardOffset; - /* 0x18E8 */ public float InWorldNGuiScreenScale; - /* 0x18F0 */ public Vector3f InWorldNGuiScreenRotation; - /* 0x1900 */ public Vector2f InWorldNGuiParallax; - /* 0x1908 */ public Vector2f InWorldGameGuiAlignment; - /* 0x1910 */ public int InWorldInteractLabelWidth; - /* 0x1914 */ public int InWorldInteractLabelHeight; - /* 0x1918 */ public NMSString0x20 VRDistanceWarningUIFile; - /* 0x1938 */ public bool ShowVRDistanceWarning; - /* 0x1940 */ public Vector3f FaceLockedScreenOffset; - /* 0x1950 */ public int VRFaceLockedScreenWidth; - /* 0x1954 */ public int VRFaceLockedScreenHeight; - /* 0x1958 */ public bool OnlyShowEjectHandlesInVR; - /* 0x195C */ public int CompassScreenWidth; - /* 0x1960 */ public int CompassScreenHeight; - /* 0x1964 */ public float CompassLineContractionStartAngle; - /* 0x1968 */ public float CompassLineContractionEndAngle; - /* 0x196C */ public float CompassLineContractionTargetAngle; - /* 0x1970 */ public int CompassLineNumNotches; - /* 0x1974 */ public float CompassLineThickness; - /* 0x1978 */ public float CompassLineOffset; - /* 0x197C */ public float CompassLineNotchAngleRange; - /* 0x1980 */ public float CompassLineNotchThickness; - /* 0x1984 */ public float CompassLineNotchLength; - /* 0x1988 */ public bool EnableHandMenuDebug; - /* 0x198C */ public float HandControlMenuCursorScale; - /* 0x1990 */ public float QuickMenuCursorScale; - /* 0x1994 */ public float QuickMenuAlpha; - /* 0x1998 */ public float HandScreenGraphicsWidth; - /* 0x199C */ public float HandScreenGraphicsHeight; - /* 0x19A0 */ public float HandScreenNearActivateDistance; - /* 0x19A4 */ public float HandButtonRadius; - /* 0x19A8 */ public float HandButtonRadiusTouch; - /* 0x19AC */ public float HandButtonRadiusTouchNear; - /* 0x19B0 */ public float HandButtonRadiusTouchNearActive; - /* 0x19B4 */ public float HandButtonPostClickTime; - /* 0x19B8 */ public float HandButtonReleaseThreshold; - /* 0x19BC */ public float HandButtonReleaseThresholdInit; - /* 0x19C0 */ public float HandButtonCursorScale; - /* 0x19C4 */ public float HandButtonPushDistance; - /* 0x19C8 */ public float HandButtonNearDistance; - /* 0x19CC */ public float HandButtonRadiusClick; - /* 0x19D0 */ public float HandButtonClickTime; - /* 0x19D4 */ public float HandButtonTouchReturnTime; - /* 0x19D8 */ public float HandButtonFrontendCursorScale; - /* 0x19DC */ public float HandButtonThickness; - /* 0x19E0 */ public float HandButtonDotRadius; - /* 0x19E4 */ public float HandButtonPulseRadius; - /* 0x19E8 */ public float HandButtonPulseThickness; - /* 0x19EC */ public float ShipSideScreenHeight; - /* 0x19F0 */ public float SolidPointerScale; - /* 0x19F4 */ public float SolidPointerLengthScale; - /* 0x19F8 */ public float SolidPointerMaxLength; - /* 0x19FC */ public float InWorldInteractionScreenScale; - /* 0x1A00 */ public float InWorldNPCInteractionScreenScale; - /* 0x1A04 */ public bool EnableCraftingTree; - /* 0x1A05 */ public bool QuickMenuEnableSwipe; - /* 0x1A08 */ public float QuickMenuSwipeHeightMin; - /* 0x1A0C */ public float QuickMenuSwipeHeightMax; - /* 0x1A10 */ public float BuildMenuItemNavAnimTime; - /* 0x1A14 */ public float BuildMenuItemNextNavAnimTime; - /* 0x1A18 */ public float BuildMenuItemNextNavAnimWait; - /* 0x1A1C */ public float QuickMenuInteractAdjustX; - /* 0x1A20 */ public float QuickMenuInteractAdjustY; - /* 0x1A24 */ public int QuickMenuScreenWidth; - /* 0x1A28 */ public int QuickMenuScreenHeight; - /* 0x1A2C */ public float QuickMenuHighlightRate; - /* 0x1A30 */ public float HandControlButtonSize; - /* 0x1A34 */ public float HandControlPointMargin; - /* 0x1A38 */ public float HandControlPointActiveMargin; - /* 0x1A3C */ public float HandControlMenuMoveDistance; - /* 0x1A40 */ public float HandControlMenuMoveDistanceScroll; - /* 0x1A44 */ public float HandControlMenuMoveDistanceVertical; - /* 0x1A48 */ public float HandControlMenuMoveActionDistance; - /* 0x1A4C */ public float HandControlMenuAngle; - /* 0x1A50 */ public float HandControlMenuSurfaceOffset; - /* 0x1A54 */ public float HandControlMenuSelectRadius; - /* 0x1A58 */ public float HandControlMenuSelectRadius1; - /* 0x1A5C */ public float HandControlMenuSelectRadius2; - /* 0x1A60 */ public float HandControlTopMenuSelectRadius; - /* 0x1A64 */ public float HandControlMenuDepth; - /* 0x1A68 */ public int HandScreenWeaponWidth; - /* 0x1A6C */ public int HandScreenWeaponHeight; - /* 0x1A70 */ public int HandScreenWidth; - /* 0x1A74 */ public int HandScreenHeight; - /* 0x1A80 */ public Colour DebugEditorAxisColourUpInactive; - /* 0x1A90 */ public Colour DebugEditorAxisColourUpActive; - /* 0x1AA0 */ public Colour DebugEditorAxisColourRightInactive; - /* 0x1AB0 */ public Colour DebugEditorAxisColourRightActive; - /* 0x1AC0 */ public Colour DebugEditorAxisColourAtInactive; - /* 0x1AD0 */ public Colour DebugEditorAxisColourAtActive; - /* 0x1AE0 */ public Colour QuickMenuSelectedItemColour1; - /* 0x1AF0 */ public Colour QuickMenuSelectedItemColour2; - /* 0x1B00 */ public TkModelRendererData ShipThumbnailModelView; - /* 0x1BC0 */ public TkModelRendererData PetThumbnailModelView; - /* 0x1C80 */ public TkModelRendererData MultitoolThumbnailModelView; - /* 0x1D40 */ public TkModelRendererData LargeMultitoolThumbnailModelView; - /* 0x1E00 */ public Colour FrontendCursorBackgroundColour; - /* 0x1E10 */ public float NGuiHmdOffset; - /* 0x1E14 */ public float HmdFramerateScreenPitch; - /* 0x1E20 */ public Vector3f HmdFramerateScreenOffset; - /* 0x1E30 */ public float CrosshairScaleHmd; - /* 0x1E34 */ public float CrosshairOffsetHmd; - /* 0x1E38 */ public float CrosshairOffsetHmdUp; - /* 0x1E3C */ public int CrosshairScreenWidth; - /* 0x1E40 */ public int CrosshairScreenHeight; - /* 0x1E44 */ public float HUDMarkerHoverAngleTestGroundHmd; - /* 0x1E48 */ public float HUDMarkerWideHoverAngleTestHmd; - /* 0x1E4C */ public bool InteractionInWorldPlayerCamAlways; - /* 0x1E50 */ public float InteractionInWorldPitchDistance; - /* 0x1E54 */ public float InteractionInWorldMinScreenDistance; - /* 0x1E58 */ public float InteractionInWorldMinScreenDistanceV2; - /* 0x1E5C */ public float InteractionInWorldSeatedNPCHeightAdjust; - /* 0x1E60 */ public float InteractionInWorldSeatedNPCHeightAdjustV2; - /* 0x1E64 */ public float ShipHologramInWorldUIHeightAdjust; - /* 0x1E68 */ public float ShipHologramInWorldUIHeightAdjustV2; - /* 0x1E6C */ public float ShopInteractionInWorldForcedOffset; - /* 0x1E70 */ public float ShopInteractionInWorldForcedOffsetV2; - /* 0x1E74 */ public float TravelTargetRadius; - /* 0x1E78 */ public float TravelLineThickness; - /* 0x1E80 */ public Colour TravelLineColour; - /* 0x1E90 */ public Colour TravelLineTooFarColour; - /* 0x1EA0 */ public Colour TravelLineTooSteepColour; - /* 0x1EB0 */ public Colour TravelLineInvalidColour; - /* 0x1EC0 */ public Colour TravelLineNotAllowedColour; - /* 0x1ED0 */ public Colour TravelTargetColour; - /* 0x1EE0 */ public bool AlwaysCloseQuickMenu; - /* 0x1EE1 */ public bool UseWorldNodesForRepair; - /* 0x1EE2 */ public bool RepairTechUseTechIcon; - /* 0x1EE3 */ public bool DebugMissionLogText; - /* 0x1EE4 */ public bool DebugShowMaintenanceScreenCentre; - /* 0x1EE5 */ public bool DebugPopupSizes; - /* 0x1EE6 */ public bool DebugInventoryIndices; - /* 0x1EE7 */ public bool FixedInventoryIconPositions; - /* 0x1EF0 */ public GcHUDEffectRewardData OSDRareItemRewardEffect; - /* 0x1F50 */ public GcHUDEffectRewardData OSDEpicItemRewardEffect; - /* 0x1FB0 */ public float OSDMessageQueueSpeedMultiplier; - /* 0x1FB4 */ public int OSDMessageQueueMin; - /* 0x1FB8 */ public int OSDMessageQueueMax; - /* 0x1FBC */ public float PopupValueSectionBaseHeight; - /* 0x1FC0 */ public float PopupValueSectionHeight; - /* 0x1FD0 */ public Colour ProcProductColourCommon; - /* 0x1FE0 */ public Colour ProcProductColourUncommon; - /* 0x1FF0 */ public Colour ProcProductColourRare; - /* 0x2000 */ public List InventoryIconPositions; - /* 0x2010 */ public Colour PickedItemBorderColour; - /* 0x2020 */ public Colour MultiplayerMissionParticipantsColour; - /* 0x2030 */ public NMSString0x10 MultiplayerMissionInteractStartTrigger; - /* 0x2040 */ public NMSString0x10 MultiplayerMissionInteractEndTrigger; - /* 0x2050 */ public float NotificationHazardMinTimeAfterRecharge; - /* 0x2054 */ public float LoadFadeInDefaultTime; - /* 0x2058 */ public float DroneIndicatorRadius; - /* 0x205C */ public float DroneIndicatorCentreRadiusMax; - /* 0x2060 */ public float DroneIndicatorCentreRadiusMin; - /* 0x2064 */ public float DroneIndicatorFadeRange; - /* 0x2068 */ public float WantedDetectMessageTime; - /* 0x206C */ public float WantedDetectMinTimeout; - /* 0x2070 */ public float TakeoffFuelMessageTime; - /* 0x2074 */ public float MarkerHorizonOffsetAngle; - /* 0x2078 */ public float MarkerHorizonMinOffset; - /* 0x207C */ public float MarkerHorizonApproachAngle; - /* 0x2080 */ public float MarkerOffsetTypeAngle; - /* 0x2084 */ public float MarkerOffsetTypeAngleBattle; - /* 0x2088 */ public float MarkerOffsetTypeAngleBounty; - /* 0x208C */ public float MarkerOffsetTypeAnglePlayerShip; - /* 0x2090 */ public float MarkerOffsetTypeAngleAsteroid; - /* 0x2094 */ public float MarkerHorizonOffPlanetLightBeamAngle; - /* 0x2098 */ public float MarkerHorizonShipApproachOffset; - /* 0x209C */ public float TransferPopupCursorOffsetFactor; - /* 0x20A0 */ public float ScannableIconMergeAngle; - /* 0x20A4 */ public float CreatureIconMergeAngle; - /* 0x20A8 */ public int MaxNumMessageBeaconIcons; - /* 0x20AC */ public float MissionObjectiveBaseHeight; - /* 0x20B0 */ public float MissionObjectiveDoneHeight; - /* 0x20B4 */ public float MissionObjectiveScrollingExtra; - /* 0x20B8 */ public float MissionDetailsPageBaseHeight; - /* 0x20BC */ public float MarkerTagAppearDelay; - /* 0x20C0 */ public Vector2f CompassCentre; - /* 0x20C8 */ public float CompassHeight; - /* 0x20CC */ public float CompassWidth; - /* 0x20D0 */ public float CompassDistanceScaleMin; - /* 0x20D4 */ public float CompassDistanceScaleRange; - /* 0x20D8 */ public float CompassDistanceSpaceScaleMin; - /* 0x20DC */ public float CompassDistanceSpaceScaleRange; - /* 0x20E0 */ public float CompassDistanceScale; - /* 0x20E4 */ public float CompassDistanceShipMinScale; - /* 0x20E8 */ public float CompassDistanceMarkerMinScale; - /* 0x20EC */ public float CompassDistanceMaxAngle; - /* 0x20F0 */ public float CompassDistanceYOffset; - /* 0x20F4 */ public float CompassAngleClamp; - /* 0x20F8 */ public float CompassAngleFade; - /* 0x20FC */ public TkCurveType CompassCurve; - /* 0x2100 */ public float CompassAngleClampSpace; - /* 0x2104 */ public float BaseComplexityDangerFactor; - /* 0x2108 */ public float BaseComplexityWarningFactor; - /* 0x2110 */ public Colour BaseComplexityDefaultColour; - /* 0x2120 */ public Colour BaseComplexityWarningColour; - /* 0x2130 */ public Colour BaseComplexityDangerColour; - /* 0x2140 */ public float BuildMenuActionMessageDuration; + /* 0x1390 */ public GcWonderCategoryConfig[] WonderCustomCategoryConfig; + /* 0x1630 */ public TkCurveType PadCursorUICurve; + /* 0x1640 */ public Colour JoaoBoxCompletedObjectiveColour; + /* 0x1650 */ public Colour InvSlotGradientBaseColour; + /* 0x1660 */ public float InvSlotGradientFactorMin; + /* 0x1664 */ public float InvSlotGradientFactor; + /* 0x1668 */ public float InvSlotGradientTime; + /* 0x1670 */ public Colour SuperchargePopupColour; + /* 0x1680 */ public Colour SuperchargeGradientBaseColour; + /* 0x1690 */ public Colour SuperchargeGradientBlendColour; + /* 0x16A0 */ public Colour SuperchargeGradientTechColour; + /* 0x16B0 */ public float SuperchargeGradientFactorMin; + /* 0x16B4 */ public float SuperchargeGradientFactor; + /* 0x16B8 */ public float SuperchargeGradientTime; + /* 0x16BC */ public float GridDecayRateSwitchValue; + /* 0x16C0 */ public float PadCursorUICurveStrength; + /* 0x16C4 */ public bool ReplaceItemBarWithNumbers; + /* 0x16C8 */ public NMSString0x10 DebugInventoryHint; + /* 0x16D8 */ public int MaxSubstanceMaxAmountForAmountFraction; + /* 0x16DC */ public bool UseSquareSlots; + /* 0x16DD */ public bool BigPicking; + /* 0x16DE */ public bool BigPickingUsesNumbers; + /* 0x16E0 */ public float FreighterMegaWarpTransitionTime; + /* 0x16E4 */ public bool EnablePopupUses; + /* 0x16E5 */ public bool TechBoxesCanStack; + /* 0x16E8 */ public int UnknownWordsToShowInCatalogue; + /* 0x16EC */ public bool UseIntermediateMissionGiverOptions; + /* 0x16F0 */ public float SentinelsDisabledHUDMessageTime; + /* 0x16F4 */ public float UseZoomedOutBuildCamRadius; + /* 0x16F8 */ public float ParagraphAutoScrollSpeed; + /* 0x16FC */ public bool AutoScrollParagraphs; + /* 0x1700 */ public float GameModeSelectColourFadeTime; + /* 0x1704 */ public float EggModifiyAnimMaxSize; + /* 0x1708 */ public float EggModifiyAnimLoopTime; + /* 0x170C */ public int SeasonFinalStageIndex; + /* 0x1710 */ public List SeasonalRingTable; + /* 0x1720 */ public float SeasonalRingMultiplier; + /* 0x1724 */ public float SeasonalRingPulseTime; + /* 0x1728 */ public float SeasonalRingChangeTime; + /* 0x172C */ public float MinSeasonPlayTimeInDays; + /* 0x1730 */ public float ExpeditionStageChangeTime; + /* 0x1734 */ public float MilestoneStingDisplayTime; + /* 0x1738 */ public float StageStingDisplayTime; + /* 0x173C */ public float EndOfSeasonAlertDelay; + /* 0x1740 */ public int ShowHoursIfLessThan; + /* 0x1744 */ public int ShowDaysIfLessThan; + /* 0x1748 */ public int ShowWeeksIfLessThan; + /* 0x1750 */ public NMSString0x10 ExplorationLogMissionID; + /* 0x1760 */ public int ForceOpenHazardProtInventoryThreshold; + /* 0x1764 */ public float PlanetDataExtraRadius; + /* 0x1768 */ public float StackSizeRateChangeRate; + /* 0x176C */ public float StackSizeChangeMinRate; + /* 0x1770 */ public float StackSizeChangeMaxRate; + /* 0x1774 */ public float ClosestDoorMarkerBuffer; + /* 0x1778 */ public bool SkipShopIntro; + /* 0x177C */ public float ZoomFactorOverride; + /* 0x1780 */ public float HandheldZoomFactor; + /* 0x1784 */ public float PlacedMarkerFadeTime; + /* 0x1788 */ public float LoadingTravelDistance; + /* 0x178C */ public float LoadingScreenTravelSpeed; + /* 0x1790 */ public float LoadingScreenTime; + /* 0x1794 */ public float OSDMessagePauseOffscreenAngle; + /* 0x1798 */ public float QuickMenuCentrePos; + /* 0x179C */ public float QuickMenuSideOffset; + /* 0x17A0 */ public float QuickMenuCentreSideOffset; + /* 0x17A4 */ public float InWorldInteractLabelScale; + /* 0x17A8 */ public float InWorldInteractLabelScaleV2; + /* 0x17AC */ public float InWorldScreenScaleDistance; + /* 0x17B0 */ public Vector2f InWorldInteractLabelAlignment; + /* 0x17C0 */ public Vector3f InWorldInteractLabelCentreOffset; + /* 0x17D0 */ public Vector3f InWorldInteractLabelTopOffset; + /* 0x17E0 */ public Vector3f InWorldInteractLabelLineOffset; + /* 0x17F0 */ public Vector3f InWorldStaffBinocsScreenOffset; + /* 0x1800 */ public float InWorldInteractLabelMinHeadOffset; + /* 0x1804 */ public float InWorldInteractLabelNearDistance; + /* 0x1808 */ public float InWorldInteractLabelNearRange; + /* 0x180C */ public float InWorldInteractLabelFarDistance; + /* 0x1810 */ public float InWorldInteractLabelFarRange; + /* 0x1814 */ public float ShipHUDMarkerHideDistance; + /* 0x1818 */ public float ShipHUDMarkerOffset; + /* 0x181C */ public float ExocraftHUDMarkerHideDistance; + /* 0x1820 */ public float ExocraftHUDMarkerOffset; + /* 0x1824 */ public float PetSlotUnlockBounceTime; + /* 0x1828 */ public float PetHUDMarkerExtraFollowInfoDistance; + /* 0x182C */ public float PetHUDMarkerHideDistance; + /* 0x1830 */ public float PetHUDMarkerHideDistanceShort; + /* 0x1834 */ public float PetHUDMarkerOffset; + /* 0x1838 */ public float PetMoodMarkerOffset; + /* 0x183C */ public float BeaconHUDMarkerOffset; + /* 0x1840 */ public Vector2f BinocularEdgeFade; + /* 0x1848 */ public float BinocularScreenOffset; + /* 0x184C */ public float BinocularScreenScale; + /* 0x1850 */ public float BinocularMarkerSideAngle; + /* 0x1854 */ public float BinocularMarkerUpAngle; + /* 0x1858 */ public bool BinocularScanScreen; + /* 0x185C */ public float BinocularsNearIconOpacity; + /* 0x1860 */ public float BinocularsNearIconDist; + /* 0x1864 */ public float BinocularsNearIconFadeDist; + /* 0x1868 */ public float BinocularsMidIconOpacity; + /* 0x186C */ public float BinocularsFarIconOpacity; + /* 0x1870 */ public float BinocularsFarIconDist; + /* 0x1874 */ public float BinocularsFarIconFadeDist; + /* 0x1878 */ public float AlignmentRequiredToDisableFrostedGlass; + /* 0x1880 */ public Vector3f BinocularPanelLinePointOffset; + /* 0x1890 */ public float GalmapDiscoveryOffsetVR; + /* 0x1894 */ public float FrontendOffsetVR; + /* 0x1898 */ public float ProjectorScale; + /* 0x189C */ public float MaxProjectorDistanceFromDefault; + /* 0x18A0 */ public float ProjectorGrabResetTime; + /* 0x18A4 */ public bool AllowProjectorRepositioning; + /* 0x18A8 */ public float MaxProjectorGrabDistance; + /* 0x18AC */ public float ProjectorGrabDistanceBias; + /* 0x18B0 */ public float ProjectorGrabBorderPercent; + /* 0x18B4 */ public float CockpitGlassFrostTime; + /* 0x18B8 */ public float CockpitGlassDefrostTime; + /* 0x18BC */ public float TextPrintoutMultiplier; + /* 0x18C0 */ public float TextPrintoutMultiplierAlien; + /* 0x18C4 */ public bool EnableHandMenuButtons; + /* 0x18C5 */ public bool AllowInWorldDebugBorders; + /* 0x18C8 */ public Vector2f MarkerDistanceVRAlignment; + /* 0x18D0 */ public float CompassIconOffsetVR; + /* 0x18D4 */ public float LowerHelmetScreenScale; + /* 0x18D8 */ public float LowerHelmetScreenPitch; + /* 0x18E0 */ public Vector3f LowerHelmetScreenOffset; + /* 0x18F0 */ public float InWorldScreenMinScreenDistance; + /* 0x18F4 */ public float InWorldScreenForwardOffset; + /* 0x18F8 */ public float InWorldNGuiScreenScale; + /* 0x1900 */ public Vector3f InWorldNGuiScreenRotation; + /* 0x1910 */ public Vector2f InWorldNGuiParallax; + /* 0x1918 */ public Vector2f InWorldGameGuiAlignment; + /* 0x1920 */ public int InWorldInteractLabelWidth; + /* 0x1924 */ public int InWorldInteractLabelHeight; + /* 0x1928 */ public NMSString0x20 VRDistanceWarningUIFile; + /* 0x1948 */ public bool ShowVRDistanceWarning; + /* 0x1950 */ public Vector3f FaceLockedScreenOffset; + /* 0x1960 */ public int VRFaceLockedScreenWidth; + /* 0x1964 */ public int VRFaceLockedScreenHeight; + /* 0x1968 */ public bool OnlyShowEjectHandlesInVR; + /* 0x196C */ public int CompassScreenWidth; + /* 0x1970 */ public int CompassScreenHeight; + /* 0x1974 */ public float CompassLineContractionStartAngle; + /* 0x1978 */ public float CompassLineContractionEndAngle; + /* 0x197C */ public float CompassLineContractionTargetAngle; + /* 0x1980 */ public int CompassLineNumNotches; + /* 0x1984 */ public float CompassLineThickness; + /* 0x1988 */ public float CompassLineOffset; + /* 0x198C */ public float CompassLineNotchAngleRange; + /* 0x1990 */ public float CompassLineNotchThickness; + /* 0x1994 */ public float CompassLineNotchLength; + /* 0x1998 */ public bool EnableHandMenuDebug; + /* 0x199C */ public float HandControlMenuCursorScale; + /* 0x19A0 */ public float QuickMenuCursorScale; + /* 0x19A4 */ public float QuickMenuAlpha; + /* 0x19A8 */ public float HandScreenGraphicsWidth; + /* 0x19AC */ public float HandScreenGraphicsHeight; + /* 0x19B0 */ public float HandScreenNearActivateDistance; + /* 0x19B4 */ public float HandButtonRadius; + /* 0x19B8 */ public float HandButtonRadiusTouch; + /* 0x19BC */ public float HandButtonRadiusTouchNear; + /* 0x19C0 */ public float HandButtonRadiusTouchNearActive; + /* 0x19C4 */ public float HandButtonPostClickTime; + /* 0x19C8 */ public float HandButtonReleaseThreshold; + /* 0x19CC */ public float HandButtonReleaseThresholdInit; + /* 0x19D0 */ public float HandButtonCursorScale; + /* 0x19D4 */ public float HandButtonPushDistance; + /* 0x19D8 */ public float HandButtonNearDistance; + /* 0x19DC */ public float HandButtonRadiusClick; + /* 0x19E0 */ public float HandButtonClickTime; + /* 0x19E4 */ public float HandButtonTouchReturnTime; + /* 0x19E8 */ public float HandButtonFrontendCursorScale; + /* 0x19EC */ public float HandButtonThickness; + /* 0x19F0 */ public float HandButtonDotRadius; + /* 0x19F4 */ public float HandButtonPulseRadius; + /* 0x19F8 */ public float HandButtonPulseThickness; + /* 0x19FC */ public float ShipSideScreenHeight; + /* 0x1A00 */ public float SolidPointerScale; + /* 0x1A04 */ public float SolidPointerLengthScale; + /* 0x1A08 */ public float SolidPointerMaxLength; + /* 0x1A0C */ public float InWorldInteractionScreenScale; + /* 0x1A10 */ public float InWorldNPCInteractionScreenScale; + /* 0x1A14 */ public bool EnableCraftingTree; + /* 0x1A15 */ public bool QuickMenuEnableSwipe; + /* 0x1A18 */ public float QuickMenuSwipeHeightMin; + /* 0x1A1C */ public float QuickMenuSwipeHeightMax; + /* 0x1A20 */ public float BuildMenuItemNavAnimTime; + /* 0x1A24 */ public float BuildMenuItemNextNavAnimTime; + /* 0x1A28 */ public float BuildMenuItemNextNavAnimWait; + /* 0x1A2C */ public float QuickMenuInteractAdjustX; + /* 0x1A30 */ public float QuickMenuInteractAdjustY; + /* 0x1A34 */ public int QuickMenuScreenWidth; + /* 0x1A38 */ public int QuickMenuScreenHeight; + /* 0x1A3C */ public float QuickMenuHighlightRate; + /* 0x1A40 */ public float HandControlButtonSize; + /* 0x1A44 */ public float HandControlPointMargin; + /* 0x1A48 */ public float HandControlPointActiveMargin; + /* 0x1A4C */ public float HandControlMenuMoveDistance; + /* 0x1A50 */ public float HandControlMenuMoveDistanceScroll; + /* 0x1A54 */ public float HandControlMenuMoveDistanceVertical; + /* 0x1A58 */ public float HandControlMenuMoveActionDistance; + /* 0x1A5C */ public float HandControlMenuAngle; + /* 0x1A60 */ public float HandControlMenuSurfaceOffset; + /* 0x1A64 */ public float HandControlMenuSelectRadius; + /* 0x1A68 */ public float HandControlMenuSelectRadius1; + /* 0x1A6C */ public float HandControlMenuSelectRadius2; + /* 0x1A70 */ public float HandControlTopMenuSelectRadius; + /* 0x1A74 */ public float HandControlMenuDepth; + /* 0x1A78 */ public int HandScreenWeaponWidth; + /* 0x1A7C */ public int HandScreenWeaponHeight; + /* 0x1A80 */ public int HandScreenWidth; + /* 0x1A84 */ public int HandScreenHeight; + /* 0x1A90 */ public Colour DebugEditorAxisColourUpInactive; + /* 0x1AA0 */ public Colour DebugEditorAxisColourUpActive; + /* 0x1AB0 */ public Colour DebugEditorAxisColourRightInactive; + /* 0x1AC0 */ public Colour DebugEditorAxisColourRightActive; + /* 0x1AD0 */ public Colour DebugEditorAxisColourAtInactive; + /* 0x1AE0 */ public Colour DebugEditorAxisColourAtActive; + /* 0x1AF0 */ public Colour QuickMenuSelectedItemColour1; + /* 0x1B00 */ public Colour QuickMenuSelectedItemColour2; + /* 0x1B10 */ public TkModelRendererData ShipThumbnailModelView; + /* 0x1BD0 */ public TkModelRendererData PetThumbnailModelView; + /* 0x1C90 */ public TkModelRendererData MultitoolThumbnailModelView; + /* 0x1D50 */ public TkModelRendererData LargeMultitoolThumbnailModelView; + /* 0x1E10 */ public Colour FrontendCursorBackgroundColour; + /* 0x1E20 */ public float NGuiHmdOffset; + /* 0x1E24 */ public float HmdFramerateScreenPitch; + /* 0x1E30 */ public Vector3f HmdFramerateScreenOffset; + /* 0x1E40 */ public float CrosshairScaleHmd; + /* 0x1E44 */ public float CrosshairOffsetHmd; + /* 0x1E48 */ public float CrosshairOffsetHmdUp; + /* 0x1E4C */ public int CrosshairScreenWidth; + /* 0x1E50 */ public int CrosshairScreenHeight; + /* 0x1E54 */ public float HUDMarkerHoverAngleTestGroundHmd; + /* 0x1E58 */ public float HUDMarkerWideHoverAngleTestHmd; + /* 0x1E5C */ public bool InteractionInWorldPlayerCamAlways; + /* 0x1E60 */ public float InteractionInWorldPitchDistance; + /* 0x1E64 */ public float InteractionInWorldMinScreenDistance; + /* 0x1E68 */ public float InteractionInWorldMinScreenDistanceV2; + /* 0x1E6C */ public float InteractionInWorldSeatedNPCHeightAdjust; + /* 0x1E70 */ public float InteractionInWorldSeatedNPCHeightAdjustV2; + /* 0x1E74 */ public float ShipHologramInWorldUIHeightAdjust; + /* 0x1E78 */ public float ShipHologramInWorldUIHeightAdjustV2; + /* 0x1E7C */ public float ShopInteractionInWorldForcedOffset; + /* 0x1E80 */ public float ShopInteractionInWorldForcedOffsetV2; + /* 0x1E84 */ public float TravelTargetRadius; + /* 0x1E88 */ public float TravelLineThickness; + /* 0x1E90 */ public Colour TravelLineColour; + /* 0x1EA0 */ public Colour TravelLineTooFarColour; + /* 0x1EB0 */ public Colour TravelLineTooSteepColour; + /* 0x1EC0 */ public Colour TravelLineInvalidColour; + /* 0x1ED0 */ public Colour TravelLineNotAllowedColour; + /* 0x1EE0 */ public Colour TravelTargetColour; + /* 0x1EF0 */ public bool AlwaysCloseQuickMenu; + /* 0x1EF1 */ public bool UseWorldNodesForRepair; + /* 0x1EF2 */ public bool RepairTechUseTechIcon; + /* 0x1EF3 */ public bool DebugMissionLogText; + /* 0x1EF4 */ public bool DebugShowMaintenanceScreenCentre; + /* 0x1EF5 */ public bool DebugPopupSizes; + /* 0x1EF6 */ public bool DebugInventoryIndices; + /* 0x1EF7 */ public bool FixedInventoryIconPositions; + /* 0x1F00 */ public GcHUDEffectRewardData OSDRareItemRewardEffect; + /* 0x1F60 */ public GcHUDEffectRewardData OSDEpicItemRewardEffect; + /* 0x1FC0 */ public float OSDMessageQueueSpeedMultiplier; + /* 0x1FC4 */ public int OSDMessageQueueMin; + /* 0x1FC8 */ public int OSDMessageQueueMax; + /* 0x1FCC */ public float PopupValueSectionBaseHeight; + /* 0x1FD0 */ public float PopupValueSectionHeight; + /* 0x1FE0 */ public Colour ProcProductColourCommon; + /* 0x1FF0 */ public Colour ProcProductColourUncommon; + /* 0x2000 */ public Colour ProcProductColourRare; + /* 0x2010 */ public List InventoryIconPositions; + /* 0x2020 */ public Colour PickedItemBorderColour; + /* 0x2030 */ public Colour MultiplayerMissionParticipantsColour; + /* 0x2040 */ public NMSString0x10 MultiplayerMissionInteractStartTrigger; + /* 0x2050 */ public NMSString0x10 MultiplayerMissionInteractEndTrigger; + /* 0x2060 */ public float NotificationHazardMinTimeAfterRecharge; + /* 0x2064 */ public float LoadFadeInDefaultTime; + /* 0x2068 */ public float DroneIndicatorRadius; + /* 0x206C */ public float DroneIndicatorCentreRadiusMax; + /* 0x2070 */ public float DroneIndicatorCentreRadiusMin; + /* 0x2074 */ public float DroneIndicatorFadeRange; + /* 0x2078 */ public float WantedDetectMessageTime; + /* 0x207C */ public float WantedDetectMinTimeout; + /* 0x2080 */ public float TakeoffFuelMessageTime; + /* 0x2084 */ public float MarkerHorizonOffsetAngle; + /* 0x2088 */ public float MarkerHorizonMinOffset; + /* 0x208C */ public float MarkerHorizonApproachAngle; + /* 0x2090 */ public float MarkerOffsetTypeAngle; + /* 0x2094 */ public float MarkerOffsetTypeAngleBattle; + /* 0x2098 */ public float MarkerOffsetTypeAngleBounty; + /* 0x209C */ public float MarkerOffsetTypeAnglePlayerShip; + /* 0x20A0 */ public float MarkerOffsetTypeAngleAsteroid; + /* 0x20A4 */ public float MarkerHorizonOffPlanetLightBeamAngle; + /* 0x20A8 */ public float MarkerHorizonShipApproachOffset; + /* 0x20AC */ public float TransferPopupCursorOffsetFactor; + /* 0x20B0 */ public float ScannableIconMergeAngle; + /* 0x20B4 */ public float CreatureIconMergeAngle; + /* 0x20B8 */ public int MaxNumMessageBeaconIcons; + /* 0x20BC */ public float MissionObjectiveBaseHeight; + /* 0x20C0 */ public float MissionObjectiveDoneHeight; + /* 0x20C4 */ public float MissionObjectiveScrollingExtra; + /* 0x20C8 */ public float MissionDetailsPageBaseHeight; + /* 0x20CC */ public float MarkerTagAppearDelay; + /* 0x20D0 */ public Vector2f CompassCentre; + /* 0x20D8 */ public float CompassHeight; + /* 0x20DC */ public float CompassWidth; + /* 0x20E0 */ public float CompassDistanceScaleMin; + /* 0x20E4 */ public float CompassDistanceScaleRange; + /* 0x20E8 */ public float CompassDistanceSpaceScaleMin; + /* 0x20EC */ public float CompassDistanceSpaceScaleRange; + /* 0x20F0 */ public float CompassDistanceScale; + /* 0x20F4 */ public float CompassDistanceShipMinScale; + /* 0x20F8 */ public float CompassDistanceMarkerMinScale; + /* 0x20FC */ public float CompassDistanceMaxAngle; + /* 0x2100 */ public float CompassDistanceYOffset; + /* 0x2104 */ public float CompassAngleClamp; + /* 0x2108 */ public float CompassAngleFade; + /* 0x210C */ public TkCurveType CompassCurve; + /* 0x2110 */ public float CompassAngleClampSpace; + /* 0x2114 */ public float BaseComplexityDangerFactor; + /* 0x2118 */ public float BaseComplexityWarningFactor; + /* 0x2120 */ public Colour BaseComplexityDefaultColour; + /* 0x2130 */ public Colour BaseComplexityWarningColour; + /* 0x2140 */ public Colour BaseComplexityDangerColour; + /* 0x2150 */ public float BuildMenuActionMessageDuration; [NMS(Size = 0x10, EnumType = typeof(GcBuildMenuOption.BuildMenuOptionEnum))] - /* 0x2148 */ public NMSString0x20A[] BuildMenuOnActionLocIDs; + /* 0x2158 */ public NMSString0x20A[] BuildMenuOnActionLocIDs; [NMS(Size = 0x10, EnumType = typeof(GcBuildMenuOption.BuildMenuOptionEnum))] - /* 0x2348 */ public NMSString0x20A[] BuildMenuOnActionDisabledLocIDs; + /* 0x2358 */ public NMSString0x20A[] BuildMenuOnActionDisabledLocIDs; [NMS(Size = 0x10, EnumType = typeof(GcBuildMenuOption.BuildMenuOptionEnum))] - /* 0x2548 */ public NMSString0x20A[] BuildMenuOnActionErrorLocIDs; + /* 0x2558 */ public NMSString0x20A[] BuildMenuOnActionErrorLocIDs; [NMS(Size = 0x10, EnumType = typeof(GcBuildMenuOption.BuildMenuOptionEnum))] - /* 0x2748 */ public bool[] BuildMenuUseSmallIconOnPad; - /* 0x2760 */ public Colour BuildMenuPassiveErrorTextColour; - /* 0x2770 */ public Colour BuildMenuPassiveErrorTextOutlineColour; - /* 0x2780 */ public Colour BuildMenuErrorTextColour; - /* 0x2790 */ public Colour BuildMenuErrorTextOutlineColour; - /* 0x27A0 */ public Colour BuildMenuErrorTextFlashColour; - /* 0x27B0 */ public Colour BuildMenuErrorTextOutlineFlashColour; - /* 0x27C0 */ public Colour BuildMenuInfoTextColour; - /* 0x27D0 */ public Colour BuildMenuInfoTextOutlineColour; - /* 0x27E0 */ public float IconGlowStrengthError; - /* 0x27E4 */ public float IconGlowStrengthActive; - /* 0x27E8 */ public float IconGlowStrengthNeutral; - /* 0x27EC */ public float IconGlowStrengthHighlight; - /* 0x27F0 */ public Colour IconGlowColourError; - /* 0x2800 */ public Colour IconGlowColourActive; - /* 0x2810 */ public Colour IconGlowColourNeutral; - /* 0x2820 */ public Colour IconGlowColourHighlight; - /* 0x2830 */ public float BaseBuildingPinHighlightDuration; - /* 0x2834 */ public float BaseBuildingInputHighlightDuration; - /* 0x2838 */ public float BaseBuildingInputHighlightAlpha; - /* 0x283C */ public float BaseBuildingScaleSpeed; - /* 0x2840 */ public float BaseBuildingMinFreeRotateSpeed; - /* 0x2844 */ public float BaseBuildingMaxFreeRotateSpeed; - /* 0x2848 */ public float BaseBuildingTimeToMaxRotationSpeed; - /* 0x284C */ public float BaseBuildingRotationResetRate; - /* 0x2850 */ public float BaseBuildingFreeRotateSpeedPadMultiplier; - /* 0x2854 */ public float BaseBuildingFreeRotateDelayBeforeReset; - /* 0x2858 */ public float BaseBuildingFreeRotateDelayBeforeAudioStops; - /* 0x285C */ public bool BaseBuildingSmoothMenuWhileSnapped; - /* 0x2860 */ public float BaseBuildingUIHorizontalSafeArea; - /* 0x2864 */ public float BaseBuildingUIVerticalSafeArea; - /* 0x2868 */ public float BaseBuildingUIVerticalPosWiring; - /* 0x286C */ public float BaseBuildingUIVerticalOffset; - /* 0x2870 */ public float BaseBuildingUIVerticalOffsetEdit; - /* 0x2874 */ public float BaseBuildingUIVerticalOffsetFromBB; - /* 0x2878 */ public float BaseBuildingUIErrorFadeTime; - /* 0x287C */ public float BaseBuildingUIAdjustTime; - /* 0x2880 */ public float BaseBuildingPartsGridMaxCursorRestorationTime; - /* 0x2884 */ public float BaseBuildingPartsGridBreadcrumbFlashDuration; - /* 0x2888 */ public float BaseBuildingPartsGridMinVisibilityForActive; - /* 0x288C */ public float BaseBuildingPartsGridScrollSpeed; - /* 0x2890 */ public float BaseBuildingPartsGridPopupDelay; - /* 0x2894 */ public TkTextureResource BaseBuildingPartsGridExpandableIcon; - /* 0x2918 */ public TkTextureResource BaseBuildingPartsGridExpandedIcon; - /* 0x299C */ public TkTextureResource BaseBuildingPartsGridRetractableIcon; - /* 0x2A20 */ public float MarkerRingInnerRadius; - /* 0x2A24 */ public float MarkerRingOuterRadius; - /* 0x2A30 */ public Colour MarkerRingBGColour; - /* 0x2A40 */ public float RepairTechRepairedWaitTime1; - /* 0x2A44 */ public float RepairTechRepairedWaitTime2; - /* 0x2A48 */ public float RepairTechRepairedMessageTime; - /* 0x2A4C */ public float TechPopupRepairLayerHeight; - /* 0x2A50 */ public float TechPopupBuildLayerHeight; - /* 0x2A54 */ public float TechPopupRequirementHeight; - /* 0x2A58 */ public float DamageScannableHighlightTime; - /* 0x2A5C */ public float DamageTrackArrowTime; - /* 0x2A60 */ public bool EnableBlackouts; - /* 0x2A64 */ public float HUDMarkerObjectMinScreenDistance; - /* 0x2A68 */ public float HUDMarkerDistanceOrTimeDistance; - /* 0x2A6C */ public float MarkerComponentOffset; - /* 0x2A70 */ public float RepairTechLabelOffset; - /* 0x2A74 */ public float MaintenanceIconFadeStart; - /* 0x2A78 */ public float MaintenanceIconFadeTime; - /* 0x2A80 */ public TkModelRendererData RepairCamera; - /* 0x2B40 */ public TkModelRendererData RepairWeaponCamera; - /* 0x2C00 */ public TkModelRendererData RepairBackpackCamera; - /* 0x2CC0 */ public TkModelRendererData RepairShipCameraInWorld; - /* 0x2D80 */ public TkModelRendererData RepairShipCameraModelView; - /* 0x2E40 */ public TkModelRendererData RepairShipCameraVR; - /* 0x2F00 */ public List VehicleTypeRepairCamera; - /* 0x2F10 */ public Vector2f BinocularsDiscoveryPos; - /* 0x2F20 */ public Colour InteractionLabelCostColour; - /* 0x2F30 */ public Colour InteractionLabelPickupColour; - /* 0x2F40 */ public Colour InteractionLabelPickupFillColour; - /* 0x2F50 */ public Vector2f PersonalRefinerInputPos; - /* 0x2F58 */ public Vector2f PersonalRefinerOutputPos; - /* 0x2F60 */ public TkTextureResource RefinerPopupEmptyOutputIcon; - /* 0x2FE4 */ public float RefinerPadStartTime; - /* 0x2FE8 */ public float RefinerPadStartDecayTime; - /* 0x2FEC */ public float RefinerBeginDialInnerRadius; - /* 0x2FF0 */ public float RefinerProgressDialInnerRadius; - /* 0x3000 */ public Vector3f DefaultRefinerOffsetIn; - /* 0x3010 */ public Vector3f DefaultRefinerOffsetOut; - /* 0x3020 */ public Vector2f RefinerParallax; - /* 0x3028 */ public Vector2f ModelViewWorldParallax; - /* 0x3030 */ public Vector2f HUDPlayerSentinelPulseFreq; - /* 0x3038 */ public Vector2f HUDPlayerSentinelPulseSize; - /* 0x3040 */ public float HUDPlayerSentinelPulseWidth; - /* 0x3044 */ public float HUDPlayerSentinelRangeFactor; - /* 0x3048 */ public float HUDPlayerSentinelPulseScanFreq; - /* 0x304C */ public float HUDPlayerPhonePulseScanFreq; - /* 0x3050 */ public float RefinerAutoCloseTime; - /* 0x3060 */ public Colour RefinerBackgroundColour; - /* 0x3070 */ public Colour RefinerErrorBackgroundColour; - /* 0x3080 */ public Colour GridDisconnectedColour; - /* 0x3090 */ public Colour GridOnlineColour; - /* 0x30A0 */ public Colour GridOfflineColour; - /* 0x30B0 */ public Colour GridBackgroundNeutralColour; - /* 0x30C0 */ public Colour GridBackgroundPositiveColour; - /* 0x30D0 */ public Colour GridBackgroundNegativeColour; - /* 0x30E0 */ public Colour TransferSendPopupColour; - /* 0x30F0 */ public float BountyMarkerOffset; - /* 0x30F4 */ public float PlanetRaidMarkerOffset; - /* 0x30F8 */ public float TransitionOffset; - /* 0x30FC */ public float PageTurnTime; - /* 0x3100 */ public TkCurveType PageTurnCurve; - /* 0x3101 */ public TkCurveType PageTurnFadeCurve; - /* 0x3104 */ public float LowHealthShieldMin; - /* 0x3108 */ public float LowHealthShieldFactor; - /* 0x310C */ public int MaxDialogCharSizeRoman; - /* 0x3110 */ public NMSString0x20 MaxDialogCharSizeRomanString; - /* 0x3130 */ public int MaxDialogCharSizeIdeographic; - /* 0x3134 */ public NMSString0x20 MaxDialogCharSizeIdeographicString; - /* 0x3154 */ public float ShipOverheatSwitchMessageWait; - /* 0x3158 */ public float ShipOverheatSwitchMessageTime; - /* 0x315C */ public bool LeadTargetEnabled; - /* 0x315D */ public bool SpaceOnlyLeadTargetEnabled; - /* 0x3160 */ public Vector2f SaveIconPosition; - /* 0x3168 */ public float MissionStartEndTime; - /* 0x316C */ public float MissionStartEndOSDTime; - /* 0x3170 */ public float MissionStartEndOSDTimeProcedural; - /* 0x3174 */ public float StandingRewardOSDTime; - /* 0x3180 */ public Colour MissionOSDMessageBarColour; - /* 0x3190 */ public Colour NotificationDefaultColour; - /* 0x31A0 */ public Colour NotificationDangerColour; - /* 0x31B0 */ public Colour NotificationInfoColour; - /* 0x31C0 */ public Colour NotificationUrgentColour; - /* 0x31D0 */ public float ShipDamageDirectionIndicatorRadius; - /* 0x31D4 */ public float ShipDamageDirectionIndicatorFadeRange; - /* 0x31D8 */ public float OnFootDamageDirectionIndicatorRadius; - /* 0x31DC */ public float OnFootDamageDirectionIndicatorFadeRange; - /* 0x31E0 */ public float DamageDirectionIndicatorOnScreenRadiusMultiplier; - /* 0x31E4 */ public Vector2f DialogPageCursorOffset; - /* 0x31EC */ public Vector2f IntermediateInteractionPageCursorOffset; - /* 0x31F4 */ public Vector2f CursorlessDialogPageCursorOffset; - /* 0x31FC */ public int MissionSpecificMissionPercent; - /* 0x3200 */ public int MissionLoopCount; - /* 0x3204 */ public int MissionLoopCountPirate; - /* 0x3208 */ public int MissionSeedOffset; - /* 0x3210 */ public Vector3f SpaceMapCockpitOffset; - /* 0x3220 */ public float SpaceMapCockpitScale; - /* 0x3224 */ public float SpaceMapCockpitScaleAdjustDropShip; - /* 0x3228 */ public float SpaceMapCockpitScaleAdjustFighter; - /* 0x322C */ public float SpaceMapCockpitScaleAdjustScientific; - /* 0x3230 */ public float SpaceMapCockpitScaleAdjustShuttle; - /* 0x3234 */ public float SpaceMapCockpitScaleAdjustRoyal; - /* 0x3238 */ public float SpaceMapCockpitScaleAdjustSail; - /* 0x323C */ public float SpaceMapCockpitScaleAdjustAlien; - /* 0x3240 */ public float SpaceMapCockpitScaleAdjustRobot; - /* 0x3244 */ public float SpaceMapCockpitAngle; - /* 0x3248 */ public float TargetDisplayScale; - /* 0x324C */ public float TargetDisplayTorpedoScale; - /* 0x3250 */ public float TargetDisplayShipScale; - /* 0x3260 */ public Vector3f TargetDisplayShipOffset; - /* 0x3270 */ public Vector3f TargetDisplayTorpedoOffset; - /* 0x3280 */ public float TargetDisplayDamageFlashTime; - /* 0x3290 */ public GcScanEffectData TargetDisplayScanEffect; - /* 0x32E0 */ public bool ProgressiveDialogStyle; - /* 0x32E4 */ public float CommunicatorMessageTime; - /* 0x32F0 */ public Colour CommunicatorMessageColour; - /* 0x3300 */ public float GridFlickerBaseAlpha; - /* 0x3304 */ public float GridFlickerFreq; - /* 0x3308 */ public float GridFlickerAmp; - /* 0x330C */ public float HUDMarkerLabelWidthMultiplier; - /* 0x3310 */ public float HUDMarkerLabelBaseWidth; - /* 0x3314 */ public float HUDMarkerLabelArriveDistance; - /* 0x3318 */ public float HUDMarkerLabelDisplayDistance; - /* 0x331C */ public float HUDMarkerNonActiveMissionAlpha; - /* 0x3320 */ public bool DebugMarkerLabels; - /* 0x3330 */ public GcScanEffectData DebugEditorPreviewEffect; - /* 0x3380 */ public bool ShowDamageNumbers; - /* 0x3384 */ public float QuickMenuCloseTime; - /* 0x3388 */ public float QuickMenuErrorTime; - /* 0x338C */ public float FrontendWaitResponse; - /* 0x3390 */ public float FrontendWaitInitial; - /* 0x3394 */ public float FrontendWaitInitialTerminal; - /* 0x3398 */ public float FrontendWaitFadeTextOut; - /* 0x339C */ public float FrontendWaitFadeTextFrameOut; - /* 0x33A0 */ public float FrontendWaitFadeProgressiveDialogOut; - /* 0x33A4 */ public float FrontendWaitResponseOffset; - /* 0x33A8 */ public float TalkBoxAlienTextSpeed; - /* 0x33AC */ public float TalkBoxAlienTextTimeMin; - /* 0x33B0 */ public float TalkBoxAlienTextTimeMax; - /* 0x33B4 */ public float DescriptionTextDelay; - /* 0x33B8 */ public float DescriptionTextSpeed; - /* 0x33BC */ public float DescriptionTextSpeedProgressive; - /* 0x33C0 */ public float DescriptionTextTimeMin; - /* 0x33C4 */ public float DescriptionTextTimeMax; - /* 0x33C8 */ public float ConsoleTextSpeed; - /* 0x33CC */ public float ConsoleTextTimeMin; - /* 0x33D0 */ public float ConsoleTextTimeMax; - /* 0x33D4 */ public float HoverOffscreenBorder; - /* 0x33D8 */ public float HoverOffscreenBorderVR; - /* 0x33DC */ public float TransferSendOffscreenBorder; - /* 0x33E0 */ public float TimedEventLookTime; - /* 0x33E4 */ public float CreatureDistanceSize; - /* 0x33E8 */ public float CreatureDistanceOffsetY; - /* 0x33EC */ public float CreatureDistanceShadowOffset; - /* 0x33F0 */ public float CreatureDistanceDisplayAngle; - /* 0x33F4 */ public float CreatureDistanceFadeTime; - /* 0x33F8 */ public float CreatureDistanceAlpha; - /* 0x33FC */ public bool ShowOnscreenPredatorMarkers; - /* 0x3400 */ public float DamageImpactMergeTime; - /* 0x3404 */ public float DamageImpactTimeBetweenNumbers; - /* 0x3408 */ public float DamageImpactMinDistance; - /* 0x340C */ public float DamagePerSecondSampleTime; - /* 0x3410 */ public float DamageNumberTime; - /* 0x3414 */ public float DamageNumberSizeInShip; - /* 0x3418 */ public float DamageNumberSize; - /* 0x341C */ public float DamageNumberSizeCritMultiplier; - /* 0x3420 */ public float DamageNumberSizeLaserMultiplier; - /* 0x3424 */ public float DamageNumberLaserMinDamage; - /* 0x3428 */ public float DamageNumberLaserMaxDamage; - /* 0x342C */ public float DamageNumberBlackAlpha; - /* 0x3430 */ public float DamageNumberOutline; - /* 0x3434 */ public float DamageNumberOutline2; - /* 0x3438 */ public float DamageNumberOffsetX; - /* 0x343C */ public float DamageNumberOffsetY; - /* 0x3440 */ public Vector2f DamageNumberSideSpeed; - /* 0x3448 */ public float DamageNumberFadeIn; - /* 0x344C */ public float DamageNumberFadeOut; - /* 0x3450 */ public float DamageNumberUpOffset; - /* 0x3454 */ public TkCurveType DamageNumberUpCurve; - /* 0x3460 */ public Colour DamageNumberCriticalColour; - /* 0x3470 */ public Colour DamageNumberIneffectiveColour; - /* 0x3480 */ public Colour DamageNumberIneffectiveWarningColour; - /* 0x3490 */ public Colour PhotoModeSelectedColour; - /* 0x34A0 */ public Colour PhotoModeUnselectedColour; - /* 0x34B0 */ public Colour FuelBgColour; - /* 0x34C0 */ public float PhotoModeValueAlpha; - /* 0x34C4 */ public float PhotoModeTimeofDayChange; - /* 0x34C8 */ public float FrigateIconOffset; - /* 0x34CC */ public float CreatureIconOffset; - /* 0x34D0 */ public float CreatureIconOffsetPhysics; - /* 0x34D4 */ public float DelayBeforeHidingHangarAfterGalaxyMap; - /* 0x34D8 */ public float DelayBeforeShowingHangarIntoGalaxyMap; - /* 0x34DC */ public float FreighterSummonTurn; - /* 0x34E0 */ public float FreighterSummonPitch; - /* 0x34E4 */ public float FreighterSummonOffset; - /* 0x34E8 */ public float FreighterSummonOffsetPulse; - /* 0x34EC */ public float FreighterSummonDelay; - /* 0x34F0 */ public int FreighterSummonTurnNumTries; - /* 0x34F4 */ public float FreighterSummonTurnAngleIncrement; - /* 0x34F8 */ public float FreighterSummonGridSize; - /* 0x34FC */ public float FreighterCommanderMarkerMinDistance; - /* 0x3500 */ public float FreighterSurfaceMinAngle; - /* 0x3504 */ public float FreighterSummonPulseRate; - /* 0x3508 */ public float FreighterSummonPulseFadeAmount; - /* 0x350C */ public float FreighterSummonPlanetOffset; - /* 0x3510 */ public float FreighterSummonLookTime; - /* 0x3514 */ public float FreighterHighlightRange; - /* 0x3520 */ public GcScanEffectData FreighterSummonScanEffect; - /* 0x3570 */ public Colour FreighterSummonScanEffectColourBlocked; - /* 0x3580 */ public Colour FreighterSummonScanEffectColourHighlight; - /* 0x3590 */ public float PirateCountdownTime; - /* 0x3594 */ public float PirateAttackIndicatorWidth; - /* 0x3598 */ public float PirateAttackIndicatorRadius; - /* 0x359C */ public float PirateAttackProbeDisplayFinishFactor; - /* 0x35A0 */ public float HazardArrowsLevel2Threshold; - /* 0x35A4 */ public float HazardArrowsLevel3Threshold; - /* 0x35A8 */ public float ArrowBounceLength; - /* 0x35AC */ public float ArrowBounceRate; - /* 0x35B0 */ public float ArrowBounceRightRate1; - /* 0x35B4 */ public float ArrowBounceRightRate2; - /* 0x35B8 */ public TkCurveType ArrowBounceRightCurve; - /* 0x35BC */ public float ArrowBounceLeftRate1; - /* 0x35C0 */ public float ArrowBounceLeftRate2; - /* 0x35C4 */ public float ArrowBounceLeftRate3; - /* 0x35C8 */ public TkCurveType ArrowBounceLeftCurve; - /* 0x35CC */ public float PlanetScanDelayTime; - /* 0x35D0 */ public float AlwaysShowIconFadeDistance; - /* 0x35D4 */ public float AlwaysShowIconFadeRange; - /* 0x35D8 */ public float FrigatePurchaseNotificationResetDistanceMultiplier; - /* 0x35DC */ public float FrigateDamageIconVisibilityDistance; - /* 0x35E0 */ public float FreighterLeaderIconDistance; - /* 0x35E4 */ public float FreighterEntranceOffset; - /* 0x35E8 */ public float ShipHeadsUpDisplayDistance; - /* 0x35EC */ public float ShipHeadsUpLineFadeTime; - /* 0x35F0 */ public float CrosshairAimTime; - /* 0x35F4 */ public float CrosshairAimOffTime; - /* 0x35F8 */ public float CrosshairInnerMinFade; - /* 0x35FC */ public float CrosshairInnerMinFadeRange; - /* 0x3600 */ public float CrosshairLeadScaleIn; - /* 0x3604 */ public float CrosshairLeadInDelay; - /* 0x3608 */ public float CrosshairLeadInTime; - /* 0x360C */ public float CrosshairLeadCornerOffset; - /* 0x3610 */ public float CrosshairLeadTopOffset; - /* 0x3614 */ public float CrosshairLeadTopLock; - /* 0x3618 */ public float CrosshairLeadPulseSize; - /* 0x361C */ public TkCurveType CrosshairLeadScaleCurve; - /* 0x3620 */ public float CrosshairSpringTime; - /* 0x3624 */ public float CrosshairSpringAimTime; - /* 0x3628 */ public float CrosshairLeadSpring; - /* 0x362C */ public float CrosshairLeadSpringOff; - /* 0x3630 */ public float CrosshairLeadFadeRange; - /* 0x3634 */ public float CrosshairLeadFadeSize; - /* 0x3640 */ public Colour CrosshairLeadThreatColour; - /* 0x3650 */ public Colour CrosshairLeadPassiveColour; - /* 0x3660 */ public float CrosshairInterceptSize; - /* 0x3664 */ public float CrosshairInterceptBaseSize; - /* 0x3668 */ public float CrosshairInterceptCentreBaseSize; - /* 0x366C */ public float CrosshairInterceptSpringTime; - /* 0x3670 */ public float CrosshairInterceptAlpha; - /* 0x3674 */ public float CrosshairInterceptLockRange; - /* 0x3678 */ public float CrosshairTargetLockSize; + /* 0x2758 */ public bool[] BuildMenuUseSmallIconOnPad; + /* 0x2770 */ public Colour BuildMenuPassiveErrorTextColour; + /* 0x2780 */ public Colour BuildMenuPassiveErrorTextOutlineColour; + /* 0x2790 */ public Colour BuildMenuErrorTextColour; + /* 0x27A0 */ public Colour BuildMenuErrorTextOutlineColour; + /* 0x27B0 */ public Colour BuildMenuErrorTextFlashColour; + /* 0x27C0 */ public Colour BuildMenuErrorTextOutlineFlashColour; + /* 0x27D0 */ public Colour BuildMenuInfoTextColour; + /* 0x27E0 */ public Colour BuildMenuInfoTextOutlineColour; + /* 0x27F0 */ public float IconGlowStrengthError; + /* 0x27F4 */ public float IconGlowStrengthActive; + /* 0x27F8 */ public float IconGlowStrengthNeutral; + /* 0x27FC */ public float IconGlowStrengthHighlight; + /* 0x2800 */ public Colour IconGlowColourError; + /* 0x2810 */ public Colour IconGlowColourActive; + /* 0x2820 */ public Colour IconGlowColourNeutral; + /* 0x2830 */ public Colour IconGlowColourHighlight; + /* 0x2840 */ public float BaseBuildingPinHighlightDuration; + /* 0x2844 */ public float BaseBuildingInputHighlightDuration; + /* 0x2848 */ public float BaseBuildingInputHighlightAlpha; + /* 0x284C */ public float BaseBuildingScaleSpeed; + /* 0x2850 */ public float BaseBuildingMinFreeRotateSpeed; + /* 0x2854 */ public float BaseBuildingMaxFreeRotateSpeed; + /* 0x2858 */ public float BaseBuildingTimeToMaxRotationSpeed; + /* 0x285C */ public float BaseBuildingRotationResetRate; + /* 0x2860 */ public float BaseBuildingFreeRotateSpeedPadMultiplier; + /* 0x2864 */ public float BaseBuildingFreeRotateDelayBeforeReset; + /* 0x2868 */ public float BaseBuildingFreeRotateDelayBeforeAudioStops; + /* 0x286C */ public bool BaseBuildingSmoothMenuWhileSnapped; + /* 0x2870 */ public float BaseBuildingUIHorizontalSafeArea; + /* 0x2874 */ public float BaseBuildingUIVerticalSafeArea; + /* 0x2878 */ public float BaseBuildingUIVerticalPosWiring; + /* 0x287C */ public float BaseBuildingUIVerticalOffset; + /* 0x2880 */ public float BaseBuildingUIVerticalOffsetEdit; + /* 0x2884 */ public float BaseBuildingUIVerticalOffsetFromBB; + /* 0x2888 */ public float BaseBuildingUIErrorFadeTime; + /* 0x288C */ public float BaseBuildingUIAdjustTime; + /* 0x2890 */ public float BaseBuildingPartsGridMaxCursorRestorationTime; + /* 0x2894 */ public float BaseBuildingPartsGridBreadcrumbFlashDuration; + /* 0x2898 */ public float BaseBuildingPartsGridMinVisibilityForActive; + /* 0x289C */ public float BaseBuildingPartsGridScrollSpeed; + /* 0x28A0 */ public float BaseBuildingPartsGridPopupDelay; + /* 0x28A4 */ public TkTextureResource BaseBuildingPartsGridExpandableIcon; + /* 0x2928 */ public TkTextureResource BaseBuildingPartsGridExpandedIcon; + /* 0x29AC */ public TkTextureResource BaseBuildingPartsGridRetractableIcon; + /* 0x2A30 */ public float MarkerRingInnerRadius; + /* 0x2A34 */ public float MarkerRingOuterRadius; + /* 0x2A40 */ public Colour MarkerRingBGColour; + /* 0x2A50 */ public float RepairTechRepairedWaitTime1; + /* 0x2A54 */ public float RepairTechRepairedWaitTime2; + /* 0x2A58 */ public float RepairTechRepairedMessageTime; + /* 0x2A5C */ public float TechPopupRepairLayerHeight; + /* 0x2A60 */ public float TechPopupBuildLayerHeight; + /* 0x2A64 */ public float TechPopupRequirementHeight; + /* 0x2A68 */ public float DamageScannableHighlightTime; + /* 0x2A6C */ public float DamageTrackArrowTime; + /* 0x2A70 */ public bool EnableBlackouts; + /* 0x2A74 */ public float HUDMarkerObjectMinScreenDistance; + /* 0x2A78 */ public float HUDMarkerDistanceOrTimeDistance; + /* 0x2A7C */ public float MarkerComponentOffset; + /* 0x2A80 */ public float RepairTechLabelOffset; + /* 0x2A84 */ public float MaintenanceIconFadeStart; + /* 0x2A88 */ public float MaintenanceIconFadeTime; + /* 0x2A90 */ public TkModelRendererData RepairCamera; + /* 0x2B50 */ public TkModelRendererData RepairWeaponCamera; + /* 0x2C10 */ public TkModelRendererData RepairBackpackCamera; + /* 0x2CD0 */ public TkModelRendererData RepairShipCameraInWorld; + /* 0x2D90 */ public TkModelRendererData RepairShipCameraModelView; + /* 0x2E50 */ public TkModelRendererData RepairShipCameraVR; + /* 0x2F10 */ public List VehicleTypeRepairCamera; + /* 0x2F20 */ public Vector2f BinocularsDiscoveryPos; + /* 0x2F30 */ public Colour InteractionLabelCostColour; + /* 0x2F40 */ public Colour InteractionLabelPickupColour; + /* 0x2F50 */ public Colour InteractionLabelPickupFillColour; + /* 0x2F60 */ public Vector2f PersonalRefinerInputPos; + /* 0x2F68 */ public Vector2f PersonalRefinerOutputPos; + /* 0x2F70 */ public TkTextureResource RefinerPopupEmptyOutputIcon; + /* 0x2FF4 */ public float RefinerPadStartTime; + /* 0x2FF8 */ public float RefinerPadStartDecayTime; + /* 0x2FFC */ public float RefinerBeginDialInnerRadius; + /* 0x3000 */ public float RefinerProgressDialInnerRadius; + /* 0x3010 */ public Vector3f DefaultRefinerOffsetIn; + /* 0x3020 */ public Vector3f DefaultRefinerOffsetOut; + /* 0x3030 */ public Vector2f RefinerParallax; + /* 0x3038 */ public Vector2f ModelViewWorldParallax; + /* 0x3040 */ public Vector2f HUDPlayerSentinelPulseFreq; + /* 0x3048 */ public Vector2f HUDPlayerSentinelPulseSize; + /* 0x3050 */ public float HUDPlayerSentinelPulseWidth; + /* 0x3054 */ public float HUDPlayerSentinelRangeFactor; + /* 0x3058 */ public float HUDPlayerSentinelPulseScanFreq; + /* 0x305C */ public float HUDPlayerPhonePulseScanFreq; + /* 0x3060 */ public float RefinerAutoCloseTime; + /* 0x3070 */ public Colour RefinerBackgroundColour; + /* 0x3080 */ public Colour RefinerErrorBackgroundColour; + /* 0x3090 */ public Colour GridDisconnectedColour; + /* 0x30A0 */ public Colour GridOnlineColour; + /* 0x30B0 */ public Colour GridOfflineColour; + /* 0x30C0 */ public Colour GridBackgroundNeutralColour; + /* 0x30D0 */ public Colour GridBackgroundPositiveColour; + /* 0x30E0 */ public Colour GridBackgroundNegativeColour; + /* 0x30F0 */ public Colour TransferSendPopupColour; + /* 0x3100 */ public float BountyMarkerOffset; + /* 0x3104 */ public float PlanetRaidMarkerOffset; + /* 0x3108 */ public float TransitionOffset; + /* 0x310C */ public float PageTurnTime; + /* 0x3110 */ public TkCurveType PageTurnCurve; + /* 0x3111 */ public TkCurveType PageTurnFadeCurve; + /* 0x3114 */ public float LowHealthShieldMin; + /* 0x3118 */ public float LowHealthShieldFactor; + /* 0x311C */ public int MaxDialogCharSizeRoman; + /* 0x3120 */ public NMSString0x20 MaxDialogCharSizeRomanString; + /* 0x3140 */ public int MaxDialogCharSizeIdeographic; + /* 0x3144 */ public NMSString0x20 MaxDialogCharSizeIdeographicString; + /* 0x3164 */ public float ShipOverheatSwitchMessageWait; + /* 0x3168 */ public float ShipOverheatSwitchMessageTime; + /* 0x316C */ public bool LeadTargetEnabled; + /* 0x316D */ public bool SpaceOnlyLeadTargetEnabled; + /* 0x3170 */ public Vector2f SaveIconPosition; + /* 0x3178 */ public float MissionStartEndTime; + /* 0x317C */ public float MissionStartEndOSDTime; + /* 0x3180 */ public float MissionStartEndOSDTimeProcedural; + /* 0x3184 */ public float StandingRewardOSDTime; + /* 0x3190 */ public Colour MissionOSDMessageBarColour; + /* 0x31A0 */ public Colour NotificationDefaultColour; + /* 0x31B0 */ public Colour NotificationDangerColour; + /* 0x31C0 */ public Colour NotificationInfoColour; + /* 0x31D0 */ public Colour NotificationUrgentColour; + /* 0x31E0 */ public float ShipDamageDirectionIndicatorRadius; + /* 0x31E4 */ public float ShipDamageDirectionIndicatorFadeRange; + /* 0x31E8 */ public float OnFootDamageDirectionIndicatorRadius; + /* 0x31EC */ public float OnFootDamageDirectionIndicatorFadeRange; + /* 0x31F0 */ public float DamageDirectionIndicatorOnScreenRadiusMultiplier; + /* 0x31F4 */ public Vector2f DialogPageCursorOffset; + /* 0x31FC */ public Vector2f IntermediateInteractionPageCursorOffset; + /* 0x3204 */ public Vector2f CursorlessDialogPageCursorOffset; + /* 0x320C */ public int MissionSpecificMissionPercent; + /* 0x3210 */ public int MissionLoopCount; + /* 0x3214 */ public int MissionLoopCountPirate; + /* 0x3218 */ public int MissionSeedOffset; + /* 0x3220 */ public Vector3f SpaceMapCockpitOffset; + /* 0x3230 */ public float SpaceMapCockpitScale; + /* 0x3234 */ public float SpaceMapCockpitScaleAdjustDropShip; + /* 0x3238 */ public float SpaceMapCockpitScaleAdjustFighter; + /* 0x323C */ public float SpaceMapCockpitScaleAdjustScientific; + /* 0x3240 */ public float SpaceMapCockpitScaleAdjustShuttle; + /* 0x3244 */ public float SpaceMapCockpitScaleAdjustRoyal; + /* 0x3248 */ public float SpaceMapCockpitScaleAdjustSail; + /* 0x324C */ public float SpaceMapCockpitScaleAdjustAlien; + /* 0x3250 */ public float SpaceMapCockpitScaleAdjustRobot; + /* 0x3254 */ public float SpaceMapCockpitAngle; + /* 0x3258 */ public float TargetDisplayScale; + /* 0x325C */ public float TargetDisplayTorpedoScale; + /* 0x3260 */ public float TargetDisplayShipScale; + /* 0x3270 */ public Vector3f TargetDisplayShipOffset; + /* 0x3280 */ public Vector3f TargetDisplayTorpedoOffset; + /* 0x3290 */ public float TargetDisplayDamageFlashTime; + /* 0x32A0 */ public GcScanEffectData TargetDisplayScanEffect; + /* 0x32F0 */ public bool ProgressiveDialogStyle; + /* 0x32F4 */ public float CommunicatorMessageTime; + /* 0x3300 */ public Colour CommunicatorMessageColour; + /* 0x3310 */ public float GridFlickerBaseAlpha; + /* 0x3314 */ public float GridFlickerFreq; + /* 0x3318 */ public float GridFlickerAmp; + /* 0x331C */ public float HUDMarkerLabelWidthMultiplier; + /* 0x3320 */ public float HUDMarkerLabelBaseWidth; + /* 0x3324 */ public float HUDMarkerLabelArriveDistance; + /* 0x3328 */ public float HUDMarkerLabelDisplayDistance; + /* 0x332C */ public float HUDMarkerNonActiveMissionAlpha; + /* 0x3330 */ public bool DebugMarkerLabels; + /* 0x3340 */ public GcScanEffectData DebugEditorPreviewEffect; + /* 0x3390 */ public bool ShowDamageNumbers; + /* 0x3394 */ public float QuickMenuCloseTime; + /* 0x3398 */ public float QuickMenuErrorTime; + /* 0x339C */ public float FrontendWaitResponse; + /* 0x33A0 */ public float FrontendWaitInitial; + /* 0x33A4 */ public float FrontendWaitInitialTerminal; + /* 0x33A8 */ public float FrontendWaitFadeTextOut; + /* 0x33AC */ public float FrontendWaitFadeTextFrameOut; + /* 0x33B0 */ public float FrontendWaitFadeProgressiveDialogOut; + /* 0x33B4 */ public float FrontendWaitResponseOffset; + /* 0x33B8 */ public float TalkBoxAlienTextSpeed; + /* 0x33BC */ public float TalkBoxAlienTextTimeMin; + /* 0x33C0 */ public float TalkBoxAlienTextTimeMax; + /* 0x33C4 */ public float DescriptionTextDelay; + /* 0x33C8 */ public float DescriptionTextSpeed; + /* 0x33CC */ public float DescriptionTextSpeedProgressive; + /* 0x33D0 */ public float DescriptionTextTimeMin; + /* 0x33D4 */ public float DescriptionTextTimeMax; + /* 0x33D8 */ public float ConsoleTextSpeed; + /* 0x33DC */ public float ConsoleTextTimeMin; + /* 0x33E0 */ public float ConsoleTextTimeMax; + /* 0x33E4 */ public float HoverOffscreenBorder; + /* 0x33E8 */ public float HoverOffscreenBorderVR; + /* 0x33EC */ public float TransferSendOffscreenBorder; + /* 0x33F0 */ public float TimedEventLookTime; + /* 0x33F4 */ public float CreatureDistanceSize; + /* 0x33F8 */ public float CreatureDistanceOffsetY; + /* 0x33FC */ public float CreatureDistanceShadowOffset; + /* 0x3400 */ public float CreatureDistanceDisplayAngle; + /* 0x3404 */ public float CreatureDistanceFadeTime; + /* 0x3408 */ public float CreatureDistanceAlpha; + /* 0x340C */ public bool ShowOnscreenPredatorMarkers; + /* 0x3410 */ public float DamageImpactMergeTime; + /* 0x3414 */ public float DamageImpactTimeBetweenNumbers; + /* 0x3418 */ public float DamageImpactMinDistance; + /* 0x341C */ public float DamagePerSecondSampleTime; + /* 0x3420 */ public float DamageNumberTime; + /* 0x3424 */ public float DamageNumberSizeInShip; + /* 0x3428 */ public float DamageNumberSize; + /* 0x342C */ public float DamageNumberSizeCritMultiplier; + /* 0x3430 */ public float DamageNumberSizeLaserMultiplier; + /* 0x3434 */ public float DamageNumberLaserMinDamage; + /* 0x3438 */ public float DamageNumberLaserMaxDamage; + /* 0x343C */ public float DamageNumberBlackAlpha; + /* 0x3440 */ public float DamageNumberOutline; + /* 0x3444 */ public float DamageNumberOutline2; + /* 0x3448 */ public float DamageNumberOffsetX; + /* 0x344C */ public float DamageNumberOffsetY; + /* 0x3450 */ public Vector2f DamageNumberSideSpeed; + /* 0x3458 */ public float DamageNumberFadeIn; + /* 0x345C */ public float DamageNumberFadeOut; + /* 0x3460 */ public float DamageNumberUpOffset; + /* 0x3464 */ public TkCurveType DamageNumberUpCurve; + /* 0x3470 */ public Colour DamageNumberCriticalColour; + /* 0x3480 */ public Colour DamageNumberIneffectiveColour; + /* 0x3490 */ public Colour DamageNumberIneffectiveWarningColour; + /* 0x34A0 */ public Colour PhotoModeSelectedColour; + /* 0x34B0 */ public Colour PhotoModeUnselectedColour; + /* 0x34C0 */ public Colour FuelBgColour; + /* 0x34D0 */ public float PhotoModeValueAlpha; + /* 0x34D4 */ public float PhotoModeTimeofDayChange; + /* 0x34D8 */ public float FrigateIconOffset; + /* 0x34DC */ public float CreatureIconOffset; + /* 0x34E0 */ public float CreatureIconOffsetPhysics; + /* 0x34E4 */ public float DelayBeforeHidingHangarAfterGalaxyMap; + /* 0x34E8 */ public float DelayBeforeShowingHangarIntoGalaxyMap; + /* 0x34EC */ public float FreighterSummonTurn; + /* 0x34F0 */ public float FreighterSummonPitch; + /* 0x34F4 */ public float FreighterSummonOffset; + /* 0x34F8 */ public float FreighterSummonOffsetPulse; + /* 0x34FC */ public float FreighterSummonDelay; + /* 0x3500 */ public int FreighterSummonTurnNumTries; + /* 0x3504 */ public float FreighterSummonTurnAngleIncrement; + /* 0x3508 */ public float FreighterSummonGridSize; + /* 0x350C */ public float FreighterCommanderMarkerMinDistance; + /* 0x3510 */ public float FreighterSurfaceMinAngle; + /* 0x3514 */ public float FreighterSummonPulseRate; + /* 0x3518 */ public float FreighterSummonPulseFadeAmount; + /* 0x351C */ public float FreighterSummonPlanetOffset; + /* 0x3520 */ public float FreighterSummonLookTime; + /* 0x3524 */ public float FreighterHighlightRange; + /* 0x3530 */ public GcScanEffectData FreighterSummonScanEffect; + /* 0x3580 */ public Colour FreighterSummonScanEffectColourBlocked; + /* 0x3590 */ public Colour FreighterSummonScanEffectColourHighlight; + /* 0x35A0 */ public float PirateCountdownTime; + /* 0x35A4 */ public float PirateAttackIndicatorWidth; + /* 0x35A8 */ public float PirateAttackIndicatorRadius; + /* 0x35AC */ public float PirateAttackProbeDisplayFinishFactor; + /* 0x35B0 */ public float HazardArrowsLevel2Threshold; + /* 0x35B4 */ public float HazardArrowsLevel3Threshold; + /* 0x35B8 */ public float ArrowBounceLength; + /* 0x35BC */ public float ArrowBounceRate; + /* 0x35C0 */ public float ArrowBounceRightRate1; + /* 0x35C4 */ public float ArrowBounceRightRate2; + /* 0x35C8 */ public TkCurveType ArrowBounceRightCurve; + /* 0x35CC */ public float ArrowBounceLeftRate1; + /* 0x35D0 */ public float ArrowBounceLeftRate2; + /* 0x35D4 */ public float ArrowBounceLeftRate3; + /* 0x35D8 */ public TkCurveType ArrowBounceLeftCurve; + /* 0x35DC */ public float PlanetScanDelayTime; + /* 0x35E0 */ public float AlwaysShowIconFadeDistance; + /* 0x35E4 */ public float AlwaysShowIconFadeRange; + /* 0x35E8 */ public float FrigatePurchaseNotificationResetDistanceMultiplier; + /* 0x35EC */ public float FrigateDamageIconVisibilityDistance; + /* 0x35F0 */ public float FreighterLeaderIconDistance; + /* 0x35F4 */ public float FreighterEntranceOffset; + /* 0x35F8 */ public float ShipHeadsUpDisplayDistance; + /* 0x35FC */ public float ShipHeadsUpLineFadeTime; + /* 0x3600 */ public float CrosshairAimTime; + /* 0x3604 */ public float CrosshairAimOffTime; + /* 0x3608 */ public float CrosshairInnerMinFade; + /* 0x360C */ public float CrosshairInnerMinFadeRange; + /* 0x3610 */ public float CrosshairLeadScaleIn; + /* 0x3614 */ public float CrosshairLeadInDelay; + /* 0x3618 */ public float CrosshairLeadInTime; + /* 0x361C */ public float CrosshairLeadCornerOffset; + /* 0x3620 */ public float CrosshairLeadTopOffset; + /* 0x3624 */ public float CrosshairLeadTopLock; + /* 0x3628 */ public float CrosshairLeadPulseSize; + /* 0x362C */ public TkCurveType CrosshairLeadScaleCurve; + /* 0x3630 */ public float CrosshairSpringTime; + /* 0x3634 */ public float CrosshairSpringAimTime; + /* 0x3638 */ public float CrosshairLeadSpring; + /* 0x363C */ public float CrosshairLeadSpringOff; + /* 0x3640 */ public float CrosshairLeadFadeRange; + /* 0x3644 */ public float CrosshairLeadFadeSize; + /* 0x3650 */ public Colour CrosshairLeadThreatColour; + /* 0x3660 */ public Colour CrosshairLeadPassiveColour; + /* 0x3670 */ public float CrosshairInterceptSize; + /* 0x3674 */ public float CrosshairInterceptBaseSize; + /* 0x3678 */ public float CrosshairInterceptCentreBaseSize; + /* 0x367C */ public float CrosshairInterceptSpringTime; + /* 0x3680 */ public float CrosshairInterceptAlpha; + /* 0x3684 */ public float CrosshairInterceptLockRange; + /* 0x3688 */ public float CrosshairTargetLockSize; [NMS(Size = 0x13, EnumType = typeof(GcPlayerWeapons.WeaponModeEnum))] - /* 0x367C */ public float[] CrosshairTargetLockSizeSpecific; - /* 0x36C8 */ public TkCurveType CrosshairTargetLockCurve; - /* 0x36C9 */ public TkCurveType CrosshairTargetLockAlphaCurve; - /* 0x36D0 */ public Colour CrosshairColour; - /* 0x36E0 */ public TkHitCurveData CrosshairLeadHitCurve; - /* 0x36EC */ public TkHitCurveData ShootableHitCurve; - /* 0x36F8 */ public int ControlScrollSteps; - /* 0x36FC */ public float ControlScrollDistance; - /* 0x3700 */ public Colour SelectedControlColour; - /* 0x3710 */ public Colour RemappedControlColour; - /* 0x3720 */ public float MissionCompassIconScaler; - /* 0x3724 */ public float MissionMarkerSize; - /* 0x3728 */ public float CreatureRoutineMarkerTime; - /* 0x372C */ public int CreatureRoutineRegionsPerFrame; - /* 0x3730 */ public float SpaceMarkersOffset; - /* 0x3734 */ public float SpaceMarkersBattleOffset; - /* 0x3738 */ public float LargeSpaceIconSize; - /* 0x373C */ public float SmallSpaceIconSize; - /* 0x3740 */ public float PetHoverIconSize; - /* 0x3744 */ public float PetIconSize; - /* 0x3748 */ public Vector2f TrackTypeIconOffset; - /* 0x3750 */ public float TrackTypeIconSize; - /* 0x3754 */ public float TrackPrimaryCentreOffset; - /* 0x3758 */ public float TrackPoliceFreighterCentreOffset; - /* 0x375C */ public float TrackTimerAlpha; - /* 0x3760 */ public float TrackTimerRadarPulseSize; - /* 0x3764 */ public float TrackTimerIconOuterRadius; - /* 0x3768 */ public float TrackTimerIconInnerRadius; - /* 0x376C */ public float TrackTimerIconExclaimRadius; - /* 0x3770 */ public float MissileCentreOffset; - /* 0x3774 */ public float TrackMissileTargetPulseRate; - /* 0x3778 */ public float TrackScaleCritical; - /* 0x377C */ public float TrackScaleHit; - /* 0x3780 */ public float TrackLeadTargetInScale; - /* 0x3784 */ public float TrackReticuleScale; - /* 0x3788 */ public float TrackReticuleAngle; - /* 0x378C */ public float TrackReticuleInTime; - /* 0x3790 */ public float TrackReticuleInactiveTime; - /* 0x3794 */ public float TrackReticuleRandomTime; - /* 0x3798 */ public float TrackReticuleRandomDelay; - /* 0x379C */ public TkCurveType TrackReticuleInCurve; - /* 0x379D */ public TkCurveType TrackReticuleInAngleCurve; - /* 0x37A0 */ public float CreatureReticuleScale; - /* 0x37A4 */ public TkCurveType CreatureReticuleScaleCurve; - /* 0x37A5 */ public TkCurveType CreatureReticuleAlphaCurve; - /* 0x37A6 */ public bool CreatureInteractLabelUseBB; - /* 0x37A8 */ public float CreatureInteractLabelOffsetY; - /* 0x37AC */ public float HUDDroneHealingPulse; - /* 0x37B0 */ public float HUDDroneSummoningPulse; - /* 0x37B4 */ public float HUDDroneCombatPulse; - /* 0x37B8 */ public float HUDPlayerTrackNoSightPulse; - /* 0x37BC */ public float HUDPlayerTrackTimerStart; - /* 0x37C0 */ public float HUDPlayerTrackTimerStartFade; - /* 0x37C4 */ public float HUDPlayerTrackTimerEnd; - /* 0x37C8 */ public float HUDPlayerTrackTimerPulseRate; - /* 0x37CC */ public TkCurveType TrackCritCurve; - /* 0x37D0 */ public Vector2f TrackCriticalHitOffset; - /* 0x37D8 */ public float TrackCriticalHitSize; - /* 0x37DC */ public float TrackCriticalPulseTime; - /* 0x37E0 */ public float ThirdPersonCrosshairDistance; - /* 0x37E4 */ public float ThirdPersonCrosshairCircle1Distance; - /* 0x37E8 */ public float ThirdPersonCrosshairCircle2Distance; - /* 0x37EC */ public float HUDPlayerTrackArrowShipLabelOffset; - /* 0x37F0 */ public float HUDPlayerTrackArrowIconPulseTime; - /* 0x37F4 */ public float HUDPlayerTrackArrowIconShowTime; - /* 0x37F8 */ public float HUDPlayerTrackArrowIconFadeTime; - /* 0x37FC */ public Vector2f HUDPlayerTrackArrowIconPulseSize; - /* 0x3804 */ public float HUDPlayerTrackArrowIconPulseWidth1; - /* 0x3808 */ public float HUDPlayerTrackArrowIconPulseWidth2; - /* 0x380C */ public float HUDPlayerTrackArrowIconPulse2Alpha; - /* 0x3810 */ public float HUDPlayerTrackArrowIconFadeDistShip; - /* 0x3814 */ public float HUDPlayerTrackArrowIconFadeDistDrone; - /* 0x3818 */ public float HUDPlayerTrackArrowIconFadeDist; - /* 0x381C */ public float HUDPlayerTrackArrowIconFadeRange; - /* 0x3820 */ public float HUDPlayerTrackArrowIconFadeRangeShip; - /* 0x3824 */ public float HUDPlayerTrackArrowIconBorderReducerShip; - /* 0x3828 */ public float HUDPlayerTrackArrowPulseOffset; - /* 0x382C */ public float HUDPlayerTrackArrowPulseRate; - /* 0x3830 */ public Vector2f HUDPlayerTrackIconOffset; - /* 0x3838 */ public float ShipFullscreenDamperMin; - /* 0x383C */ public float ShipFullscreenDamper; - /* 0x3840 */ public float ShipDesatDamper; - /* 0x3844 */ public float SurveyObjectArrowOffsetMultiplier; - /* 0x3848 */ public float ScanEventArrowShipFadeRange; - /* 0x384C */ public float ScanEventArrowShipFadeDistance; - /* 0x3850 */ public float ScanEventArrowPlayerFadeRange; - /* 0x3854 */ public float ScanEventArrowPlayerFadeDistance; - /* 0x3858 */ public float ScanEventArrowOffsetMultiplier; - /* 0x385C */ public float ScanEventArrowOffsetMultiplierOneEvent; - /* 0x3860 */ public float ScanEventArrowSecondaryAlpha; - /* 0x3864 */ public GcAudioWwiseEvents ScanEventIconAudio; - /* 0x3868 */ public TkNGuiRectanglePulseEffect PulseBarData; - /* 0x3878 */ public TkNGuiRectanglePulseEffect PulseIconData; - /* 0x3890 */ public Colour PulseDamageColour; - /* 0x38A0 */ public Colour PulseAlertColour; - /* 0x38B0 */ public float TechDisplayDelayTime; - /* 0x38B4 */ public float CriticalMessageTime; - /* 0x38B8 */ public int NumDeathQuotes; - /* 0x38C0 */ public NMSString0x10 ShowStatWithDeathQuote; - /* 0x38D0 */ public bool EnableBuilderRobotGreekConversion; - /* 0x38D1 */ public bool EnableKanaConversion; - /* 0x38D4 */ public float HUDDisplayTime; - /* 0x38D8 */ public float HUDPlayerTrackDangerPulse; - /* 0x38DC */ public float HUDPlayerTrackArrowTextOffset; - /* 0x38E0 */ public float HUDPlayerTrackArrowTextHeight; - /* 0x38F0 */ public Colour HUDPlayerTrackArrowTextColour; - /* 0x3900 */ public float HUDPlayerTrackArrowHealthOffset; - /* 0x3904 */ public Vector2f HUDPlayerTrackArrowHealthSize; - /* 0x3910 */ public Colour HUDPlayerTrackArrowEnergyShieldColour; - /* 0x3920 */ public Colour HUDPlayerTrackArrowEnergyShieldLowColour; - /* 0x3930 */ public float HUDPlayerTrackArrowEnergyShieldLowThreshold; - /* 0x3934 */ public float HUDPlayerTrackArrowEnergyShieldOffset; - /* 0x3938 */ public Vector2f HUDPlayerTrackArrowEnergyShieldSize; - /* 0x3940 */ public float HUDPlayerTrackArrowGlowBaseOpacity; - /* 0x3944 */ public float HUDPlayerTrackArrowDamageGlowHullHitCriticalOpacityScale; - /* 0x3948 */ public float HUDPlayerTrackArrowDamageGlowHullHitOpacityScale; - /* 0x3950 */ public Colour HUDPlayerTrackArrowDamageGlowHullHitMaxColour; - /* 0x3960 */ public Colour HUDPlayerTrackArrowDamageGlowHullHitMinColour; - /* 0x3970 */ public float HUDPlayerTrackArrowDamageGlowShieldHitCriticalOpacityScale; - /* 0x3974 */ public float HUDPlayerTrackArrowDamageGlowShieldHitOpacityScale; - /* 0x3980 */ public Colour HUDPlayerTrackArrowDamageGlowShieldHitMaxColour; - /* 0x3990 */ public Colour HUDPlayerTrackArrowDamageGlowShieldHitMinColour; - /* 0x39A0 */ public float HUDPlayerTrackArrowDamageGlowOffset; - /* 0x39A4 */ public Vector2f HUDPlayerTrackArrowDamageGlowSize; - /* 0x39AC */ public float HUDPlayerTrackArrowEnergyShieldGlowOffset; - /* 0x39B0 */ public Vector2f HUDPlayerTrackArrowEnergyShieldGlowSize; - /* 0x39B8 */ public float HUDPlayerTrackArrowEnergyShieldDepletedGlowOpacityScale; - /* 0x39BC */ public float HUDPlayerTrackArrowEnergyShieldDepletedTime; - /* 0x39C0 */ public TkCurveType HUDPlayerTrackArrowEnergyShieldDepletedCurve; - /* 0x39D0 */ public Colour HUDPlayerTrackArrowEnergyShieldDepletedGlowMaxColour; - /* 0x39E0 */ public Colour HUDPlayerTrackArrowEnergyShieldDepletedGlowMinColour; - /* 0x39F0 */ public float HUDPlayerTrackArrowEnergyShieldStartChargeGlowOpacityScale; - /* 0x39F4 */ public float HUDPlayerTrackArrowEnergyShieldStartChargeTime; - /* 0x39F8 */ public TkCurveType HUDPlayerTrackArrowEnergyShieldStartChargeCurve; - /* 0x3A00 */ public Colour HUDPlayerTrackArrowEnergyShieldStartChargeGlowMaxColour; - /* 0x3A10 */ public Colour HUDPlayerTrackArrowEnergyShieldStartChargeGlowMinColour; - /* 0x3A20 */ public float HUDPlayerTrackArrowTargetDistShip; - /* 0x3A24 */ public float HUDPlayerTrackArrowTargetDist; - /* 0x3A28 */ public float HUDPlayerTrackArrowOffset; - /* 0x3A2C */ public float HUDPlayerTrackArrowScreenBorder; - /* 0x3A30 */ public float HUDPlayerTrackArrowSize; - /* 0x3A34 */ public float HUDPlayerTrackArrowSizeMin; - /* 0x3A38 */ public float HUDPlayerTrackArrowSizeMax; - /* 0x3A3C */ public float HUDPlayerTrackArrowIconSize; - /* 0x3A40 */ public float HUDPlayerTrackArrowSmallIconSize; - /* 0x3A44 */ public float HUDPlayerTrackArrowArrowSize; - /* 0x3A48 */ public float HUDPlayerTrackArrowDotSize; - /* 0x3A50 */ public Colour HUDPlayerTrackArrowDotColour; - /* 0x3A60 */ public Colour HUDPlayerTrackArrowDotColourPolice; - /* 0x3A70 */ public Colour HUDPlayerTrackArrowDotColourPirate; - /* 0x3A80 */ public Colour HUDPlayerTrackArrowDotColourTrader; - /* 0x3A90 */ public Colour HUDWarningColour; - /* 0x3AA0 */ public Colour HUDNotifyColour; - /* 0x3AB0 */ public float HUDPlayerTrackArrowMinFadeDist; - /* 0x3AB4 */ public float HUDPlayerTrackArrowFadeRange; + /* 0x368C */ public float[] CrosshairTargetLockSizeSpecific; + /* 0x36D8 */ public TkCurveType CrosshairTargetLockCurve; + /* 0x36D9 */ public TkCurveType CrosshairTargetLockAlphaCurve; + /* 0x36E0 */ public Colour CrosshairColour; + /* 0x36F0 */ public TkHitCurveData CrosshairLeadHitCurve; + /* 0x36FC */ public TkHitCurveData ShootableHitCurve; + /* 0x3708 */ public int ControlScrollSteps; + /* 0x370C */ public float ControlScrollDistance; + /* 0x3710 */ public Colour SelectedControlColour; + /* 0x3720 */ public Colour RemappedControlColour; + /* 0x3730 */ public float MissionCompassIconScaler; + /* 0x3734 */ public float MissionMarkerSize; + /* 0x3738 */ public float CreatureRoutineMarkerTime; + /* 0x373C */ public int CreatureRoutineRegionsPerFrame; + /* 0x3740 */ public float SpaceMarkersOffset; + /* 0x3744 */ public float SpaceMarkersBattleOffset; + /* 0x3748 */ public float LargeSpaceIconSize; + /* 0x374C */ public float SmallSpaceIconSize; + /* 0x3750 */ public float PetHoverIconSize; + /* 0x3754 */ public float PetIconSize; + /* 0x3758 */ public Vector2f TrackTypeIconOffset; + /* 0x3760 */ public float TrackTypeIconSize; + /* 0x3764 */ public float TrackPrimaryCentreOffset; + /* 0x3768 */ public float TrackPoliceFreighterCentreOffset; + /* 0x376C */ public float TrackTimerAlpha; + /* 0x3770 */ public float TrackTimerRadarPulseSize; + /* 0x3774 */ public float TrackTimerIconOuterRadius; + /* 0x3778 */ public float TrackTimerIconInnerRadius; + /* 0x377C */ public float TrackTimerIconExclaimRadius; + /* 0x3780 */ public float MissileCentreOffset; + /* 0x3784 */ public float TrackMissileTargetPulseRate; + /* 0x3788 */ public float TrackScaleCritical; + /* 0x378C */ public float TrackScaleHit; + /* 0x3790 */ public float TrackLeadTargetInScale; + /* 0x3794 */ public float TrackReticuleScale; + /* 0x3798 */ public float TrackReticuleAngle; + /* 0x379C */ public float TrackReticuleInTime; + /* 0x37A0 */ public float TrackReticuleInactiveTime; + /* 0x37A4 */ public float TrackReticuleRandomTime; + /* 0x37A8 */ public float TrackReticuleRandomDelay; + /* 0x37AC */ public TkCurveType TrackReticuleInCurve; + /* 0x37AD */ public TkCurveType TrackReticuleInAngleCurve; + /* 0x37B0 */ public float CreatureReticuleScale; + /* 0x37B4 */ public TkCurveType CreatureReticuleScaleCurve; + /* 0x37B5 */ public TkCurveType CreatureReticuleAlphaCurve; + /* 0x37B6 */ public bool CreatureInteractLabelUseBB; + /* 0x37B8 */ public float CreatureInteractLabelOffsetY; + /* 0x37BC */ public float HUDDroneHealingPulse; + /* 0x37C0 */ public float HUDDroneSummoningPulse; + /* 0x37C4 */ public float HUDDroneCombatPulse; + /* 0x37C8 */ public float HUDPlayerTrackNoSightPulse; + /* 0x37CC */ public float HUDPlayerTrackTimerStart; + /* 0x37D0 */ public float HUDPlayerTrackTimerStartFade; + /* 0x37D4 */ public float HUDPlayerTrackTimerEnd; + /* 0x37D8 */ public float HUDPlayerTrackTimerPulseRate; + /* 0x37DC */ public TkCurveType TrackCritCurve; + /* 0x37E0 */ public Vector2f TrackCriticalHitOffset; + /* 0x37E8 */ public float TrackCriticalHitSize; + /* 0x37EC */ public float TrackCriticalPulseTime; + /* 0x37F0 */ public float ThirdPersonCrosshairDistance; + /* 0x37F4 */ public float ThirdPersonCrosshairCircle1Distance; + /* 0x37F8 */ public float ThirdPersonCrosshairCircle2Distance; + /* 0x37FC */ public float HUDPlayerTrackArrowShipLabelOffset; + /* 0x3800 */ public float HUDPlayerTrackArrowIconPulseTime; + /* 0x3804 */ public float HUDPlayerTrackArrowIconShowTime; + /* 0x3808 */ public float HUDPlayerTrackArrowIconFadeTime; + /* 0x380C */ public Vector2f HUDPlayerTrackArrowIconPulseSize; + /* 0x3814 */ public float HUDPlayerTrackArrowIconPulseWidth1; + /* 0x3818 */ public float HUDPlayerTrackArrowIconPulseWidth2; + /* 0x381C */ public float HUDPlayerTrackArrowIconPulse2Alpha; + /* 0x3820 */ public float HUDPlayerTrackArrowIconFadeDistShip; + /* 0x3824 */ public float HUDPlayerTrackArrowIconFadeDistDrone; + /* 0x3828 */ public float HUDPlayerTrackArrowIconFadeDist; + /* 0x382C */ public float HUDPlayerTrackArrowIconFadeRange; + /* 0x3830 */ public float HUDPlayerTrackArrowIconFadeRangeShip; + /* 0x3834 */ public float HUDPlayerTrackArrowIconBorderReducerShip; + /* 0x3838 */ public float HUDPlayerTrackArrowPulseOffset; + /* 0x383C */ public float HUDPlayerTrackArrowPulseRate; + /* 0x3840 */ public Vector2f HUDPlayerTrackIconOffset; + /* 0x3848 */ public float ShipFullscreenDamperMin; + /* 0x384C */ public float ShipFullscreenDamper; + /* 0x3850 */ public float ShipDesatDamper; + /* 0x3854 */ public float SurveyObjectArrowOffsetMultiplier; + /* 0x3858 */ public float ScanEventArrowShipFadeRange; + /* 0x385C */ public float ScanEventArrowShipFadeDistance; + /* 0x3860 */ public float ScanEventArrowPlayerFadeRange; + /* 0x3864 */ public float ScanEventArrowPlayerFadeDistance; + /* 0x3868 */ public float ScanEventArrowOffsetMultiplier; + /* 0x386C */ public float ScanEventArrowOffsetMultiplierOneEvent; + /* 0x3870 */ public float ScanEventArrowSecondaryAlpha; + /* 0x3874 */ public GcAudioWwiseEvents ScanEventIconAudio; + /* 0x3878 */ public TkNGuiRectanglePulseEffect PulseBarData; + /* 0x3888 */ public TkNGuiRectanglePulseEffect PulseIconData; + /* 0x38A0 */ public Colour PulseDamageColour; + /* 0x38B0 */ public Colour PulseAlertColour; + /* 0x38C0 */ public float TechDisplayDelayTime; + /* 0x38C4 */ public float CriticalMessageTime; + /* 0x38C8 */ public int NumDeathQuotes; + /* 0x38D0 */ public NMSString0x10 ShowStatWithDeathQuote; + /* 0x38E0 */ public bool EnableBuilderRobotGreekConversion; + /* 0x38E1 */ public bool EnableKanaConversion; + /* 0x38E4 */ public float HUDDisplayTime; + /* 0x38E8 */ public float HUDPlayerTrackDangerPulse; + /* 0x38EC */ public float HUDPlayerTrackArrowTextOffset; + /* 0x38F0 */ public float HUDPlayerTrackArrowTextHeight; + /* 0x3900 */ public Colour HUDPlayerTrackArrowTextColour; + /* 0x3910 */ public float HUDPlayerTrackArrowHealthOffset; + /* 0x3914 */ public Vector2f HUDPlayerTrackArrowHealthSize; + /* 0x3920 */ public Colour HUDPlayerTrackArrowEnergyShieldColour; + /* 0x3930 */ public Colour HUDPlayerTrackArrowEnergyShieldLowColour; + /* 0x3940 */ public float HUDPlayerTrackArrowEnergyShieldLowThreshold; + /* 0x3944 */ public float HUDPlayerTrackArrowEnergyShieldOffset; + /* 0x3948 */ public Vector2f HUDPlayerTrackArrowEnergyShieldSize; + /* 0x3950 */ public float HUDPlayerTrackArrowGlowBaseOpacity; + /* 0x3954 */ public float HUDPlayerTrackArrowDamageGlowHullHitCriticalOpacityScale; + /* 0x3958 */ public float HUDPlayerTrackArrowDamageGlowHullHitOpacityScale; + /* 0x3960 */ public Colour HUDPlayerTrackArrowDamageGlowHullHitMaxColour; + /* 0x3970 */ public Colour HUDPlayerTrackArrowDamageGlowHullHitMinColour; + /* 0x3980 */ public float HUDPlayerTrackArrowDamageGlowShieldHitCriticalOpacityScale; + /* 0x3984 */ public float HUDPlayerTrackArrowDamageGlowShieldHitOpacityScale; + /* 0x3990 */ public Colour HUDPlayerTrackArrowDamageGlowShieldHitMaxColour; + /* 0x39A0 */ public Colour HUDPlayerTrackArrowDamageGlowShieldHitMinColour; + /* 0x39B0 */ public float HUDPlayerTrackArrowDamageGlowOffset; + /* 0x39B4 */ public Vector2f HUDPlayerTrackArrowDamageGlowSize; + /* 0x39BC */ public float HUDPlayerTrackArrowEnergyShieldGlowOffset; + /* 0x39C0 */ public Vector2f HUDPlayerTrackArrowEnergyShieldGlowSize; + /* 0x39C8 */ public float HUDPlayerTrackArrowEnergyShieldDepletedGlowOpacityScale; + /* 0x39CC */ public float HUDPlayerTrackArrowEnergyShieldDepletedTime; + /* 0x39D0 */ public TkCurveType HUDPlayerTrackArrowEnergyShieldDepletedCurve; + /* 0x39E0 */ public Colour HUDPlayerTrackArrowEnergyShieldDepletedGlowMaxColour; + /* 0x39F0 */ public Colour HUDPlayerTrackArrowEnergyShieldDepletedGlowMinColour; + /* 0x3A00 */ public float HUDPlayerTrackArrowEnergyShieldStartChargeGlowOpacityScale; + /* 0x3A04 */ public float HUDPlayerTrackArrowEnergyShieldStartChargeTime; + /* 0x3A08 */ public TkCurveType HUDPlayerTrackArrowEnergyShieldStartChargeCurve; + /* 0x3A10 */ public Colour HUDPlayerTrackArrowEnergyShieldStartChargeGlowMaxColour; + /* 0x3A20 */ public Colour HUDPlayerTrackArrowEnergyShieldStartChargeGlowMinColour; + /* 0x3A30 */ public float HUDPlayerTrackArrowTargetDistShip; + /* 0x3A34 */ public float HUDPlayerTrackArrowTargetDist; + /* 0x3A38 */ public float HUDPlayerTrackArrowOffset; + /* 0x3A3C */ public float HUDPlayerTrackArrowScreenBorder; + /* 0x3A40 */ public float HUDPlayerTrackArrowSize; + /* 0x3A44 */ public float HUDPlayerTrackArrowSizeMin; + /* 0x3A48 */ public float HUDPlayerTrackArrowSizeMax; + /* 0x3A4C */ public float HUDPlayerTrackArrowIconSize; + /* 0x3A50 */ public float HUDPlayerTrackArrowSmallIconSize; + /* 0x3A54 */ public float HUDPlayerTrackArrowArrowSize; + /* 0x3A58 */ public float HUDPlayerTrackArrowDotSize; + /* 0x3A60 */ public Colour HUDPlayerTrackArrowDotColour; + /* 0x3A70 */ public Colour HUDPlayerTrackArrowDotColourPolice; + /* 0x3A80 */ public Colour HUDPlayerTrackArrowDotColourPirate; + /* 0x3A90 */ public Colour HUDPlayerTrackArrowDotColourTrader; + /* 0x3AA0 */ public Colour HUDWarningColour; + /* 0x3AB0 */ public Colour HUDNotifyColour; + /* 0x3AC0 */ public float HUDPlayerTrackArrowMinFadeDist; + /* 0x3AC4 */ public float HUDPlayerTrackArrowFadeRange; [NMS(Size = 0x4, EnumType = typeof(GcGalaxyStarTypes.GalaxyStarTypeEnum))] - /* 0x3AC0 */ public Colour[] SystemHooverLEDColours; + /* 0x3AD0 */ public Colour[] SystemHooverLEDColours; [NMS(Size = 0x4, EnumType = typeof(GcGalaxyStarTypes.GalaxyStarTypeEnum))] - /* 0x3B00 */ public Colour[] SystemHooverStatusBarColours; - /* 0x3B40 */ public float GalaxyMapRadialBorder; - /* 0x3B44 */ public float GalaxyMapRadialTargetDist; - /* 0x3B48 */ public float IconBackgroundAlpha; - /* 0x3B4C */ public float WantedLevelWitnessPulseRate; - /* 0x3B50 */ public float WantedLevelWitnessOffset; - /* 0x3B54 */ public float WantedLevelTimeoutPulseRate; - /* 0x3B58 */ public float WantedLevelWitnessAlpha; - /* 0x3B5C */ public float WantedLevelScanAlpha; - /* 0x3B60 */ public float WantedLevelScannedRate; - /* 0x3B68 */ public List StatIcons; - /* 0x3B78 */ public bool ShowJetpackNotificationForNonTerrain; - /* 0x3B7C */ public float StatsMessageDelayTime; - /* 0x3B80 */ public float SeasonMessageDelayTime; - /* 0x3B84 */ public bool HideExtremePlanetNotifications; - /* 0x3B88 */ public float NotificationBackgroundGradientEndOffsetPercentInShip; - /* 0x3B8C */ public float NotificationBackgroundGradientAlphaInShip; - /* 0x3B90 */ public int NotificationsResourceExtractHintCount; - /* 0x3B94 */ public float NotificationStaminaHintDistanceWalked; - /* 0x3B98 */ public float NotificationMinVisibleTime; - /* 0x3B9C */ public float NotificationHazardSafeThreshold; - /* 0x3BA0 */ public float NotificationHazardTimer; - /* 0x3BA4 */ public float NotificationInteractHintStartTime; - /* 0x3BA8 */ public float NotificationBuildHintStartTime; - /* 0x3BAC */ public float NotificationJetpackTime; - /* 0x3BB0 */ public float NotificationShieldTime; - /* 0x3BB4 */ public float NotificationShipBoostTime; - /* 0x3BB8 */ public float NotificationShipBoostTimeVR; - /* 0x3BBC */ public float NotificationCantFireTime; - /* 0x3BC0 */ public float NotificationDangerTime; - /* 0x3BC4 */ public float NotificationScanTime; - /* 0x3BC8 */ public float NotificationScanTimeCutoff; - /* 0x3BCC */ public float NotificationMessageCycleTime; - /* 0x3BD0 */ public float NotificationMaxPageHintTime; - /* 0x3BD4 */ public float NotificationShipJumpMinTime; - /* 0x3BD8 */ public float NotificationShipJumpReminderTime; - /* 0x3BDC */ public float NotificationShipJumpReminderTutorial; - /* 0x3BE0 */ public float NotificationShipBoostMinTime; - /* 0x3BE4 */ public float NotificationShipBoostReminderTime; - /* 0x3BE8 */ public float NotificationShipBoostReminderTimeTutorial; - /* 0x3BEC */ public float LandNotifySpeedThreshold; - /* 0x3BF0 */ public float LandNotifyHeightThreshold; - /* 0x3BF4 */ public float LandNotifyTimeThreshold; - /* 0x3BF8 */ public float NotificationTimeBeforeHeridiumMarker; - /* 0x3BFC */ public float NotificationUrgentMessageTime; - /* 0x3C00 */ public float NotificationGoToSpaceStationWait; - /* 0x3C04 */ public float NotificationMonolithMissionWait; - /* 0x3C08 */ public float NotificationFinalMissionWait; - /* 0x3C0C */ public float NotificationWaypointReachDistance; - /* 0x3C10 */ public float NotificationBridgeReachDistance; - /* 0x3C14 */ public float NotificationDiscoveryIdleTime; - /* 0x3C18 */ public float NotificationInfoIdleTime; - /* 0x3C1C */ public float NotificationNewTechIdleTime; - /* 0x3C20 */ public float NotificationScanEventMissionIdleTime; - /* 0x3C24 */ public float NotificationDeviceIdleTime; - /* 0x3C28 */ public float NotificationMissionHintTime; - /* 0x3C2C */ public float NotificationMissionHintTimeCritical; - /* 0x3C30 */ public float NotificationMissionHintTimeSecondary; - /* 0x3C34 */ public Vector2f NotificationMissionHintPauseTime; - /* 0x3C3C */ public Vector2f NotificationMissionHintPauseTimeCritical; - /* 0x3C44 */ public Vector2f NotificationMissionHintPauseTimeSecondary; - /* 0x3C4C */ public float ManualNotificationPauseTime; - /* 0x3C50 */ public float TooltipTime; - /* 0x3C54 */ public float InventoryIconTime; - /* 0x3C58 */ public float MessageNotificationTime; - /* 0x3C5C */ public float MessageTimeQuick; - /* 0x3C60 */ public float ItemReceivedMessageTimeToAdd; - /* 0x3C64 */ public float DeathMessageSwitchTime; - /* 0x3C68 */ public float DeathMessageTotalTime; - /* 0x3C70 */ public Colour DeathMessageColour; - /* 0x3C80 */ public Colour PinnedRecipeBorder; - /* 0x3C90 */ public NMSString0x20 DistanceUnitM; - /* 0x3CB0 */ public NMSString0x20 DistanceUnitKM; - /* 0x3CD0 */ public NMSString0x20 DistanceUnitMpS; - /* 0x3CF0 */ public float ZoomHUDElementsOffsetX; - /* 0x3CF4 */ public float ZoomHUDElementsOffsetY; - /* 0x3CF8 */ public float ZoomHUDElementTime; - /* 0x3CFC */ public float HUDElementsOffsetHMDSide; - /* 0x3D00 */ public float HUDElementsOffsetHMDTop; - /* 0x3D04 */ public float HUDElementsOffsetHMDBottom; - /* 0x3D08 */ public float HUDElementsOffsetX_0; - /* 0x3D0C */ public float HUDElementsOffsetY_0; - /* 0x3D10 */ public float HUDElementsOffsetX_1; - /* 0x3D14 */ public float HUDElementsOffsetY_1; - /* 0x3D18 */ public float HUDElementsOffsetX_2; - /* 0x3D1C */ public float HUDElementsOffsetY_2; - /* 0x3D20 */ public float HUDElementsOffsetX_3; - /* 0x3D24 */ public float HUDElementsOffsetY_3; - /* 0x3D28 */ public float HUDElementsOffsetX_4; - /* 0x3D2C */ public float HUDElementsOffsetY_4; - /* 0x3D30 */ public float HUDElementsOffsetX_5; - /* 0x3D34 */ public float HUDElementsOffsetY_5; - /* 0x3D38 */ public GcWorldUISettings WorldUISettings; - /* 0x3D88 */ public float PauseMenuHoldTime; - /* 0x3D8C */ public Vector2f PlanetLabelOffset; - /* 0x3D94 */ public Vector2f PlanetMeasureOffset; - /* 0x3D9C */ public Vector2f PlanetLineOffset; - /* 0x3DA4 */ public float PlanetLabelTime; - /* 0x3DA8 */ public float PlanetLabelAngle; - /* 0x3DB0 */ public Colour ItemSlotColourSubstance; - /* 0x3DC0 */ public Colour ItemSlotColourTech; - /* 0x3DD0 */ public Colour ItemSlotColourTechCharge; - /* 0x3DE0 */ public Colour ItemSlotColourTechDamage; - /* 0x3DF0 */ public Colour ItemSlotColourPartiallyInstalled; - /* 0x3E00 */ public float ItemSlotColourTechChargeRate; - /* 0x3E10 */ public Colour ItemSlotColourProduct; - /* 0x3E20 */ public Colour ItemSlotTextColourSubstance; - /* 0x3E30 */ public Colour ItemSlotTextColourTech; - /* 0x3E40 */ public Colour ItemSlotTextColourProduct; - /* 0x3E50 */ public float InteractionScanScanTime; - /* 0x3E54 */ public float InteractionScanMinTime; - /* 0x3E58 */ public float InteractionScanDisplayTime; - /* 0x3E5C */ public float InteractionScanSlapTime; - /* 0x3E60 */ public float InteractionScanSlapScale; - /* 0x3E64 */ public float InteractionScanSlapOverallTime; - /* 0x3E68 */ public TkCurveType InteractionScanSlapCurve; - /* 0x3E6C */ public float ShipHUDMissileLockSizeMin; - /* 0x3E70 */ public float ShipHUDMissileLockSizeMax; - /* 0x3E74 */ public float ShipHUDMissileLockSpringSlow; - /* 0x3E78 */ public float ShipHUDMissileLockSpringFast; - /* 0x3E7C */ public float ShipHUDMaxOffscreenTargetDist; - /* 0x3E80 */ public float ShipHUDTargetRadius; - /* 0x3E84 */ public float ShipHUDTargetTriangleRadius; - /* 0x3E88 */ public float ShipHUDTargetAlpha; - /* 0x3E8C */ public float ShipHUDTargetArrowLength; - /* 0x3E90 */ public float ShipHUDTargetMinDist; - /* 0x3E94 */ public float ShipHUDTargetRange; - /* 0x3E98 */ public float ShipHUDTargetScale; - /* 0x3E9C */ public float ShipHUDTargetArrowsRotationRate; - /* 0x3EA0 */ public Colour ShipHUDTargetArrowsColourOutOfRange; - /* 0x3EB0 */ public Colour ShipHUDTargetArrowsColourThreat; - /* 0x3EC0 */ public Colour ShipHUDTargetArrowsColourLocal; - /* 0x3ED0 */ public List ShipHUDTargetArrowsColour; - /* 0x3EE0 */ public Colour ShipHUDAimTargetColour; - /* 0x3EF0 */ public Colour ShipHUDAimTargetCritColour; - /* 0x3F00 */ public float ShipHUDHitPointTime; - /* 0x3F04 */ public float ShipHUDHitPointSize; - /* 0x3F08 */ public float TargetScreenFoV; - /* 0x3F0C */ public float TargetScreenDistance; - /* 0x3F10 */ public Vector2f TargetScreenCamOffset; - /* 0x3F18 */ public float InventoryFullMessageRepeatTime; - /* 0x3F1C */ public float HoldTimerResetTime; - /* 0x3F20 */ public bool ModelRendererBGPass; - /* 0x3F21 */ public bool ModelRendererPass1; - /* 0x3F22 */ public bool ModelRendererPass2; - /* 0x3F24 */ public float HazardScreenEffectPulseRate; - /* 0x3F28 */ public float KeepHazardBarActiveTime; - /* 0x3F2C */ public float KeepSecondHazardBarActiveTime; - /* 0x3F30 */ public float HazardBarPulseTime; - /* 0x3F34 */ public float HazardScreenEffectPulseTime; - /* 0x3F38 */ public float HazardScreenEffectStrength; - /* 0x3F3C */ public float HazardWarningPulseTime; - /* 0x3F40 */ public float HazardWarningPulseStrength; - /* 0x3F44 */ public float HazardPainPulseStrength; - /* 0x3F48 */ public float ShieldSpringTime; - /* 0x3F4C */ public float ShieldPulseTime; - /* 0x3F50 */ public float ShieldHazardPulseRate; - /* 0x3F54 */ public bool ShieldHUDAlwaysOn; - /* 0x3F58 */ public float ShieldHazardPulseThreshold; - /* 0x3F5C */ public float AlwaysOnHazardThreshold; - /* 0x3F60 */ public float AlwaysOnHazardStrengthTox; - /* 0x3F64 */ public float AlwaysOnHazardStrengthHeat; - /* 0x3F68 */ public float AlwaysOnHazardStrengthRad; - /* 0x3F6C */ public float AlwaysOnHazardStrengthCold; - /* 0x3F70 */ public float AlwaysOnHazardMultiplierTox; - /* 0x3F74 */ public float AlwaysOnHazardMultiplierHeat; - /* 0x3F78 */ public float AlwaysOnHazardMultiplierRad; - /* 0x3F7C */ public float AlwaysOnHazardMultiplierCold; - /* 0x3F80 */ public float HazardPulseRate; - /* 0x3F88 */ public List HazardTextures; - /* 0x3F98 */ public List HazardNormalMaps; - /* 0x3FA8 */ public List HazardHeightmaps; - /* 0x3FB8 */ public NMSString0x80 CamoTexture; - /* 0x4038 */ public NMSString0x80 CamoNormalTexture; - /* 0x40B8 */ public float IconPulseRate; - /* 0x40C0 */ public Colour EnergyBgColour; - /* 0x40D0 */ public Colour EnergyBgPulseColour; - /* 0x40E0 */ public Colour HazardBgPulseColour; - /* 0x40F0 */ public Colour HazardDamagePulseColour; - /* 0x4100 */ public Colour ShieldColour; - /* 0x4110 */ public Colour ShieldDamageColour; - /* 0x4120 */ public Colour ShieldBgColour; - /* 0x4130 */ public Colour ShieldDamageBgColour; - /* 0x4140 */ public Vector2f ScanLabelOffset; - /* 0x4148 */ public Vector2f InteractionLabelOffset; - /* 0x4150 */ public Vector2f InteractionLabelOffset_1; - /* 0x4158 */ public Vector2f InteractionLabelSize; - /* 0x4160 */ public Vector2f InteractionLabelLineOffset; - /* 0x4168 */ public float InteractionLabelRadiusScaler; - /* 0x416C */ public float InteractionLabelHeight; - /* 0x4170 */ public float InteractionLabelLineAlpha; - /* 0x4174 */ public float InteractionIconInnerRadius; - /* 0x4178 */ public float InteractionIconOuterRadius; - /* 0x417C */ public float InteractionLabelPixelHeightMin; - /* 0x4180 */ public float InteractionLabelPixelHeightMax; - /* 0x4184 */ public float ScanTime; - /* 0x4190 */ public GcModelViewCollection ModelViews; - /* 0x6050 */ public Colour CursorColour; - /* 0x6060 */ public Colour CursorConfirmColour; - /* 0x6070 */ public Colour CursorTransferUploadColour; - /* 0x6080 */ public Colour CursorDeleteColour; - /* 0x6090 */ public float CursorHoverSlowFactor; - /* 0x6094 */ public float CursorHoverSlowFactorMin; - /* 0x6098 */ public float FrontendBGAlpha; - /* 0x609C */ public float FrontendConfirmTimeMouseMultiplier; - /* 0x60A0 */ public float FrontendConfirmTimeFast; - /* 0x60A4 */ public float FrontendTouchConfirmTimeFastMultiplier; - /* 0x60A8 */ public float FrontendConfirmTime; - /* 0x60AC */ public float FrontendConfirmTimeSlow; - /* 0x60B0 */ public TkCurveType FrontendConfirmCurve; - /* 0x60B4 */ public float FrontendCursorSize; - /* 0x60B8 */ public float FrontendCursorOffset; - /* 0x60BC */ public float PopupXClampOffset; - /* 0x60C0 */ public float PopupXClampOffsetRightAligned; - /* 0x60C4 */ public float PopupSlotWidthOffset; - /* 0x60C8 */ public float FrontendCursorWidth; - /* 0x60CC */ public float FrontendDeactivateTime; - /* 0x60D0 */ public float FrontendDeactivateSplit; - /* 0x60D4 */ public float FrontendActivateTime; - /* 0x60D8 */ public float FrontendActivateSplit; - /* 0x60DC */ public float FrontendStatCircleWidth; - /* 0x60E0 */ public float FrontendStatCircleWidthExtra; - /* 0x60E4 */ public float FrontendBootTime; - /* 0x60E8 */ public float FrontendBootBarTime; - /* 0x60EC */ public TkCurveType FrontendBootBarCurve; - /* 0x60F0 */ public float PopupDebounceTime; - /* 0x60F4 */ public float PopupActivateTime; - /* 0x60F8 */ public float PopupDeactivateTime; - /* 0x60FC */ public TkCurveType PopupActivateCurve1; - /* 0x60FD */ public TkCurveType PopupActivateCurve2; - /* 0x6100 */ public float ByteBeatTreeLineWidth; - /* 0x6110 */ public Colour ByteBeatTreeLineColour; - /* 0x6120 */ public float ByteBeatVisLineWidth; - /* 0x6130 */ public Colour ByteBeatVisLineColour; - /* 0x6140 */ public Colour ByteBeatVisGridColour; - /* 0x6150 */ public float ByteBeatIconLineWidth; - /* 0x6154 */ public float ByteBeatIconPad; - /* 0x6158 */ public float ByteBeatArpLineWidth; - /* 0x615C */ public float ByteBeatArpRadius; - /* 0x6160 */ public float ByteBeatArpPad; - /* 0x6170 */ public Colour ByteBeatArpGridInactiveColour; - /* 0x6180 */ public Colour ByteBeatArpGridActiveColour; - /* 0x6190 */ public Colour ByteBeatArpPipInactiveColour; - /* 0x61A0 */ public Colour ByteBeatArpPipActiveColour; - /* 0x61B0 */ public float ByteBeatSequencerLineWidth; - /* 0x61B4 */ public float ByteBeatSequencerPad; - /* 0x61B8 */ public float ByteBeatPartSequencerPad; - /* 0x61BC */ public float ByteBeatSequencerCornerRadius; - /* 0x61C0 */ public float ByteBeatRhythmBeatPad; - /* 0x61C4 */ public float ByteBeatSequencerInactiveSaturation; - /* 0x61C8 */ public float ByteBeatSequencerActiveSaturation; - /* 0x61CC */ public float ByteBeatRhythmSequencerInactiveSaturation; - /* 0x61D0 */ public float ByteBeatRhythmSequencerActiveSaturation; - /* 0x61D4 */ public float ByteBeatSequencerUnpoweredTintStrength; - /* 0x61E0 */ public Colour ByteBeatSequencerUnpoweredTint; - /* 0x61F0 */ public Colour ByteBeatSequencerBGColourActive; - /* 0x6200 */ public Colour ByteBeatSequencerBGColourInactive; - /* 0x6210 */ public Colour ByteBeatSequencerRimColourActive; - /* 0x6220 */ public Colour ByteBeatSequencerRimColourInactive; - /* 0x6230 */ public Colour ByteBeatRhythmColour0Active; - /* 0x6240 */ public Colour ByteBeatRhythmColour0Inactive; - /* 0x6250 */ public Colour ByteBeatRhythmColour1Active; - /* 0x6260 */ public Colour ByteBeatRhythmColour1Inactive; - /* 0x6270 */ public Colour ByteBeatRhythmColour2Active; - /* 0x6280 */ public Colour ByteBeatRhythmColour2Inactive; - /* 0x6290 */ public Colour ByteBeatSequencerHighlightColour; - /* 0x62A0 */ public float ByteBeatSequencerHighlightLineWidth; - /* 0x62A4 */ public float ByteBeatSliderLineWidth; - /* 0x62A8 */ public float ByteBeatSliderPad; - /* 0x62AC */ public float ByteBeatSliderCornerRadius; - /* 0x62B0 */ public Colour ByteBeatSliderFGColour; - /* 0x62C0 */ public Colour ByteBeatSliderTextActiveColour; - /* 0x62D0 */ public Colour ByteBeatSliderTextInactiveColour; - /* 0x62E0 */ public float ByteBeatSwitchPanelAlpha; - /* 0x62E4 */ public float ByteBeatSwitchPanelSplit; - /* 0x62F0 */ public Colour RadialMenuInnerColourSelected; - /* 0x6300 */ public Colour RadialMenuOuterColourSelected; - /* 0x6310 */ public Colour RadialMenuInnerColourUnselected; - /* 0x6320 */ public Colour RadialMenuOuterColourUnselected; - /* 0x6330 */ public Colour RadialMenuInnerColourDisabled; - /* 0x6340 */ public Colour RadialMenuOuterColourDisabled; - /* 0x6350 */ public float RadialMenuInnerRadius; - /* 0x6354 */ public float RadialMenuInnerRadiusCursor; - /* 0x6358 */ public float RadialMenuWedgeOffset; - /* 0x635C */ public float HatchPulseSpeed; - /* 0x6360 */ public float HatchPulseWidth; - /* 0x6364 */ public float HatchPulsePauseTime; - /* 0x6368 */ public int HatchCount; - /* 0x636C */ public float HatchCursorRadius; - /* 0x6370 */ public float HatchAlphaMain; - /* 0x6374 */ public float HatchAlphaBase; - /* 0x6378 */ public float HatchAlphaCursor; - /* 0x637C */ public float FrontendDoFNearPlaneMin; - /* 0x6380 */ public float FrontendDoFNearPlaneMax; - /* 0x6384 */ public float FrontendDoFFarPlaneMin; - /* 0x6388 */ public float FrontendDoFFarPlaneMax; - /* 0x638C */ public float FrontendDoFFarPlaneFadeMin; - /* 0x6390 */ public float FrontendDoFFarPlaneFadeMax; - /* 0x6394 */ public float FrontendDoFBlurMultiplier; - /* 0x6398 */ public bool FrontendDoFEnableBokeh; - /* 0x6399 */ public TkCurveType FrontendDoFCurve; - /* 0x639C */ public float FrontendShineSpeed; - /* 0x63A0 */ public float FrontendToolbarTextHeight; - /* 0x63A4 */ public float FrontendToolbarTextHeightSelected; - /* 0x63A8 */ public float FrontendTitleFontSpacing; - /* 0x63AC */ public float NGuiPadSensitivity; - /* 0x63B0 */ public float NGuiMouseSensitivity; - /* 0x63B4 */ public Vector2f NGuiTouchPadSensitivity; - /* 0x63C0 */ public Colour TargetMarkerColour; - /* 0x63D0 */ public Colour TargetMarkerHighlightColour; - /* 0x63E0 */ public float TargetMarkerScaleStart; - /* 0x63E4 */ public float TargetMarkerScaleEnd; - /* 0x63E8 */ public float TargetMarkerFadeAngleMin; - /* 0x63EC */ public float TargetMarkerFadeAngleRange; - /* 0x63F0 */ public float HitMarkerPulseSize; - /* 0x63F4 */ public float HitMarkerPulseSizeStatic; - /* 0x63F8 */ public float HitMarkerPulseTime; - /* 0x6400 */ public Colour WantedColour; - /* 0x6410 */ public Colour UnseenItemColour; - /* 0x6420 */ public float PlanetPoleMaxDotProduct; - /* 0x6424 */ public float SpaceMapLineWidth; - /* 0x6428 */ public float SpaceMapLineBaseScale; - /* 0x642C */ public float SpaceMapLineBaseFade; - /* 0x6430 */ public float SpaceMapShipCombineDistance; - /* 0x6434 */ public bool SpaceMapShowPlanets; - /* 0x6435 */ public bool SpaceMapShowPlanetLines; - /* 0x6436 */ public bool SpaceMapShowStation; - /* 0x6437 */ public bool SpaceMapShowStationLines; - /* 0x6438 */ public bool SpaceMapShowAnomaly; - /* 0x6439 */ public bool SpaceMapShowAnomalyLines; - /* 0x643A */ public bool SpaceMapShowNexus; - /* 0x643B */ public bool SpaceMapShowNexusLines; - /* 0x643C */ public bool SpaceMapShowShips; - /* 0x643D */ public bool SpaceMapShowShipLines; - /* 0x643E */ public bool SpaceMapShowFrieghters; - /* 0x643F */ public bool SpaceMapShowFrieghterLines; - /* 0x6440 */ public bool SpaceMapShowPulseEncounters; - /* 0x6441 */ public bool SpaceMapShowPulseEncounterLines; - /* 0x6444 */ public float SpaceMapFoV; - /* 0x6448 */ public float SpaceMapAspectRatio; - /* 0x644C */ public float SpaceMapDistanceScale; - /* 0x6450 */ public float SpaceMapDistanceLogScaler; - /* 0x6454 */ public TkCurveType SpaceMapDistanceCurve; - /* 0x6458 */ public float SpaceMapScaleMin; - /* 0x645C */ public float SpaceMapScaleRangeMin; - /* 0x6460 */ public float SpaceMapScaleRangeMax; - /* 0x6464 */ public float SpaceMapObjectScale; - /* 0x6468 */ public float SpaceMapFreighterScale; - /* 0x646C */ public float SpaceMapStationScale; - /* 0x6470 */ public float SpaceMapAnomalyScale; - /* 0x6474 */ public float SpaceMapPlanetScale; - /* 0x6478 */ public float SpaceMapPlanetLineOffset; - /* 0x647C */ public float SpaceMapMoonScale; - /* 0x6480 */ public float SpaceMapActionScale; - /* 0x6484 */ public float SpaceMapShipScale; - /* 0x6488 */ public float SpaceMapPirateFrigateScale; - /* 0x648C */ public float SpaceMapPirateFreighterScale; - /* 0x6490 */ public float SpaceMapMarkerScale; - /* 0x6494 */ public float SpaceMapDistance; - /* 0x6498 */ public float SpaceMapMaxTraderDistance; - /* 0x649C */ public float SpaceMapDistanceMultiplier; - /* 0x64A0 */ public float SpaceMapHorizonThickness; - /* 0x64A4 */ public float SpaceMapFadeAngleMin; - /* 0x64A8 */ public float SpaceMapFadeAngleMax; - /* 0x64AC */ public float SpaceMapCamHeight; - /* 0x64B0 */ public float SpaceMapCamAngle; - /* 0x64B4 */ public float SpaceMapCamDistance; - /* 0x64B8 */ public float SpaceMapShipScaleMin; - /* 0x64BC */ public float SpaceMapLightPitch; - /* 0x64C0 */ public float SpaceMapLightYaw; - /* 0x64D0 */ public Colour SpaceFriendlyShipLineColour; - /* 0x64E0 */ public Colour SpaceEnemyShipLineColour; - /* 0x64F0 */ public Vector3f SpaceMapPosScaler; - /* 0x6500 */ public Colour SpaceMapAttackColour; - /* 0x6510 */ public Colour SpaceMapOtherPlayerColour; - /* 0x6520 */ public Colour SpaceMapThreatColour; - /* 0x6530 */ public Colour SpaceMapNeutralColour; - /* 0x6540 */ public Colour SpaceMapSquadronColour; - /* 0x6550 */ public Colour SpaceMapDeathPointColour; - /* 0x6560 */ public GcSpaceMapObjectData SpaceMapMarkerData; - /* 0x6590 */ public GcSpaceMapObjectData SpaceMapPlanetData; - /* 0x65C0 */ public GcSpaceMapObjectData SpaceMapStationData; - /* 0x65F0 */ public GcSpaceMapObjectData SpaceMapNexusData; - /* 0x6620 */ public GcSpaceMapObjectData SpaceMapAtlasData; - /* 0x6650 */ public GcSpaceMapObjectData SpaceMapBlackHoleData; - /* 0x6680 */ public GcSpaceMapObjectData SpaceMapShipData; - /* 0x66B0 */ public GcSpaceMapObjectData SpaceMapFreighterData; - /* 0x66E0 */ public GcSpaceMapObjectData SpaceMapPulseEncounterData; - /* 0x6710 */ public Vector2f HUDTargetHealthOffset; - /* 0x6718 */ public Vector2f HUDTargetHealthSize; - /* 0x6720 */ public Vector2f HUDTargetHealthIconOffset; - /* 0x6728 */ public float HUDTargetHealthIconSize; - /* 0x672C */ public float HUDTargetHealthDangerTime; - /* 0x6730 */ public float HUDTargetMarkerOffset; - /* 0x6734 */ public float HUDTargetMarkerSize; - /* 0x6738 */ public float HUDTargetIconOffset; - /* 0x673C */ public float HUDTargetIconSize; - /* 0x6740 */ public float HUDMarkerOffset; - /* 0x6750 */ public Colour HUDMarkerColour; - /* 0x6760 */ public Colour HUDSpaceshipColour; - /* 0x6770 */ public Colour HUDRelicMarkerColourDiscovered; - /* 0x6780 */ public Colour HUDRelicMarkerColourUnknown; - /* 0x6790 */ public Colour HUDOutpostColour; - /* 0x67A0 */ public Vector2f HUDMarkerPrimaryIndicatorOffset; - /* 0x67A8 */ public Vector2f HUDMarkerCompassPrimaryIndicatorOffset; - /* 0x67B0 */ public NMSString0x100 HUDMarkerIcon; - /* 0x68B0 */ public NMSString0x100 HUDMarkerPrimaryIndicatorIcon; - /* 0x69B0 */ public NMSString0x100 HUDMarkerColourIcon; - /* 0x6AB0 */ public NMSString0x100 HUDPointIcon; - /* 0x6BB0 */ public NMSString0x100 HUDSpaceshipIcon; - /* 0x6CB0 */ public NMSString0x100 HUDSaveIcon; - /* 0x6DB0 */ public NMSString0x100 HUDDeathPointIcon; - /* 0x6EB0 */ public NMSString0x100 HUDHexAnimIcon; - /* 0x6FB0 */ public NMSString0x100 HUDCircleAnimIcon; - /* 0x70B0 */ public float HUDMarkerAnimSpeed; - /* 0x70B4 */ public float HUDMarkerAnimScale; - /* 0x70B8 */ public float HUDMarkerAnimOffset; - /* 0x70BC */ public float HUDMarkerAnimLoopTime; - /* 0x70C0 */ public TkCurveType HUDMarkerAnimAlphaCurve; - /* 0x70C1 */ public TkCurveType HUDMarkerAnimCurve; - /* 0x70C4 */ public float HUDMarkerPrimaryIndicatorSize; - /* 0x70C8 */ public float HUDPetMarkerAngleTest; - /* 0x70CC */ public float HUDPetMarkerAngleVRMul; - /* 0x70D0 */ public float HUDMarkerHoverAngleTestGround; - /* 0x70D4 */ public float HUDPetCentreScreenAngle; - /* 0x70D8 */ public float HUDNetworkMarkerHoverAngleTestGround; - /* 0x70DC */ public float HUDMarkerWideHoverAngleTest; - /* 0x70E0 */ public float HUDMarkerHoverAngleTestShip; - /* 0x70E4 */ public float HUDMarkerHoverShowLargeAngleTest; - /* 0x70E8 */ public float HUDNetworkMarkerHoverShowLargeAngleTest; - /* 0x70EC */ public float HUDNetworkMarkerHoverAngleVRMul; - /* 0x70F0 */ public float HUDMarkerShipOffsetMaxDist; - /* 0x70F4 */ public float HUDMarkerShipOffsetMinDist; - /* 0x70F8 */ public float HUDMarkerNearFadeDistance; - /* 0x70FC */ public float HUDMarkerNearFadeRange; - /* 0x7100 */ public float HUDMarkerFarDistance; - /* 0x7104 */ public float HUDMarkerFarFadeRange; - /* 0x7108 */ public float HUDMarkerScalerMin; - /* 0x710C */ public float HUDMarkerScalerRange; - /* 0x7110 */ public float HUDMarkerScalerSizeMin; - /* 0x7114 */ public float HUDMarkerScalerSizeMax; - /* 0x7118 */ public float HUDMarkerHorizonBlendRange; - /* 0x711C */ public float HUDMarkerAlpha; - /* 0x7120 */ public float HUDMarkerModelFadeRange; - /* 0x7124 */ public float HUDMarkerModelFadeMinHeight; - /* 0x7128 */ public float HUDMarkerShowActualIconDistance; - /* 0x712C */ public float HUDMarkerShowActualSpaceIconDistance; - /* 0x7130 */ public float HUDMarkerActiveTime; - /* 0x7134 */ public TkCurveType HUDMarkerActiveCurve; - /* 0x7138 */ public float HUDMarkerIconHoverMinScale; - /* 0x713C */ public float AltimeterResolution; - /* 0x7140 */ public float AltimeterLineSpacing; - /* 0x7144 */ public float AltimeterWidth; - /* 0x7148 */ public float AltimeterMin; - /* 0x714C */ public float AltimeterMax; - /* 0x7150 */ public float AltimeterTextSize; - /* 0x7154 */ public float AltimeterMinValue; - /* 0x7160 */ public Colour AltimeterBandColour1; - /* 0x7170 */ public Colour AltimeterBandColour2; - /* 0x7180 */ public Colour AltimeterColour1; - /* 0x7190 */ public Colour AltimeterColour2; - /* 0x71A0 */ public float LockOnMarkerSize; - /* 0x71A4 */ public float LockOnMarkerSizeLock; - /* 0x71B0 */ public Colour LockOnMarkerActiveColour; - /* 0x71C0 */ public float AsteroidMarkerMinDisplayDistance; - /* 0x71C4 */ public float AsteroidMarkerMinDisplayAngleDegrees; - /* 0x71C8 */ public float MissileIconAttackPulseTime; - /* 0x71CC */ public float MissileIconAttackPulseAmount; - /* 0x71D0 */ public float NGuiModelRotationDegreesX; - /* 0x71D4 */ public float NGuiModelRotationDegreesY; - /* 0x71D8 */ public float NGuiModelRotationDegreesZ; - /* 0x71DC */ public float NGuiModelViewDistanceGlobal; - /* 0x71E0 */ public float NGuiModelViewDistanceSuitPage; - /* 0x71E4 */ public float NGuiModelViewDistanceWeaponPage; - /* 0x71E8 */ public float NGuiModelViewDistanceShipPage; - /* 0x71EC */ public float NGuiModelViewDistanceDiscoveryPage; - /* 0x71F0 */ public float NGuiModelViewFov; - /* 0x71F4 */ public float NGuiModelViewCdSmoothTime; - /* 0x71F8 */ public float NGuiAltPlacementDistanceScrollSpeed; - /* 0x71FC */ public float NGuiPlacementAngleScrollSpeed; - /* 0x7200 */ public float NGuiModelViewFractionOfBBHeightAboveReflectivePlane; - /* 0x7210 */ public Vector3f NGuiModelTranslationFactors; - /* 0x7220 */ public Vector3f NGuiModelTranslationFactorsInteraction; - /* 0x7230 */ public Vector3f NGuiThumbnailModelTranslationFactors; - /* 0x7240 */ public float NGuiThumbnailModelRotationDegreesY; - /* 0x7244 */ public float NGuiThumbnailModelViewDistance; - /* 0x7248 */ public float NGuiCursorOffsetMultiplier; - /* 0x724C */ public float NGuiActiveAreaOffsetTime; - /* 0x7250 */ public Vector2f NGuiMin2DParallax; - /* 0x7258 */ public Vector2f NGuiMax2DParallax; - /* 0x7260 */ public Vector2f NGuiModelParallax; - /* 0x7268 */ public Vector2f NGuiShipInteractParallax; - /* 0x7270 */ public Vector2f InteractionWorldParallax; - /* 0x7278 */ public float TargetParallaxMouseMultiplier; - /* 0x727C */ public float TargetParallaxMaintenancePageMultiplier; - /* 0x7280 */ public float NGuiModelViewFadeInAfterRenderTime; - /* 0x7284 */ public TkCurveType NGuiModelViewFadeInAfterRenderCurve; - /* 0x7285 */ public bool NGuiUseSeparateLayersForModelAndReflection; - /* 0x7288 */ public GcDiscoveryHelperTimings DiscoveryHelperTimings; - /* 0x7298 */ public GcHUDStartupTable IntroTiming; - /* 0x73E8 */ public GcHUDStartupTable IntroTimingFreighter; - /* 0x7538 */ public GcHUDStartupTable IntroTimingFreighterRepaired; - /* 0x7688 */ public GcInventorySlotActionData InstallTechSlotAction; - /* 0x76A4 */ public GcInventorySlotActionData BuildProductSlotAction; - /* 0x76C0 */ public GcInventorySlotActionData ChargeSlotAction; - /* 0x76DC */ public GcInventorySlotActionData RepairSlotAction; - /* 0x76F8 */ public GcInventorySlotActionData NewSlotRevealAction; - /* 0x7714 */ public GcInventorySlotActionData NewSlotPulseAction; - /* 0x7730 */ public GcInventorySlotActionData InventoryHintAction; - /* 0x774C */ public GcInventorySlotActionData InventoryHintActionNoGlow; - /* 0x7768 */ public float ReportBaseFlashTime; - /* 0x776C */ public float ReportBaseFlashIntensity; - /* 0x7770 */ public float ReportBaseFlashDelay; - /* 0x7774 */ public float ReportCameraSpeed; - /* 0x7778 */ public float AmbientModeFadeTime; - /* 0x777C */ public bool HideQuickMenuControls; - /* 0x777D */ public bool QuickMenuAllowCycle; - /* 0x7780 */ public float TextChatMaxDisplayTime; - /* 0x7784 */ public float TextChatStayBigAfterTextInput; - /* 0x7788 */ public int BuildingShopMaxItems; - /* 0x778C */ public float ShipScreenTexScale; - /* 0x7790 */ public float MultiplayerTeleportEffectDisappearTime; - /* 0x7794 */ public float MultiplayerTeleportEffectAppearTime; - /* 0x7798 */ public int AbandonedFreighterAirlockRoomNumber; - /* 0x77A0 */ public TkNGuiTreeViewTemplate SceneInfoTreeViewTemplate; - /* 0x7820 */ public TkNGuiTreeViewTemplate FileBrowserTreeViewTemplate; - /* 0x78A0 */ public TkNGuiTreeViewTemplate SkeletonToolsTreeViewTemplate; - /* 0x7920 */ public float SettlementStatInnerRadius; - /* 0x7924 */ public float SettlementStatOuterRadius; - /* 0x7930 */ public Colour SettlementStatColour; - /* 0x7940 */ public Colour SettlementStatBackgroundColour; + /* 0x3B10 */ public Colour[] SystemHooverStatusBarColours; + /* 0x3B50 */ public float GalaxyMapRadialBorder; + /* 0x3B54 */ public float GalaxyMapRadialTargetDist; + /* 0x3B58 */ public float IconBackgroundAlpha; + /* 0x3B5C */ public float WantedLevelWitnessPulseRate; + /* 0x3B60 */ public float WantedLevelWitnessOffset; + /* 0x3B64 */ public float WantedLevelTimeoutPulseRate; + /* 0x3B68 */ public float WantedLevelWitnessAlpha; + /* 0x3B6C */ public float WantedLevelScanAlpha; + /* 0x3B70 */ public float WantedLevelScannedRate; + /* 0x3B78 */ public List StatIcons; + /* 0x3B88 */ public bool ShowJetpackNotificationForNonTerrain; + /* 0x3B8C */ public float StatsMessageDelayTime; + /* 0x3B90 */ public float SeasonMessageDelayTime; + /* 0x3B94 */ public bool HideExtremePlanetNotifications; + /* 0x3B98 */ public float NotificationBackgroundGradientEndOffsetPercentInShip; + /* 0x3B9C */ public float NotificationBackgroundGradientAlphaInShip; + /* 0x3BA0 */ public int NotificationsResourceExtractHintCount; + /* 0x3BA4 */ public float NotificationStaminaHintDistanceWalked; + /* 0x3BA8 */ public float NotificationMinVisibleTime; + /* 0x3BAC */ public float NotificationHazardSafeThreshold; + /* 0x3BB0 */ public float NotificationHazardTimer; + /* 0x3BB4 */ public float NotificationInteractHintStartTime; + /* 0x3BB8 */ public float NotificationBuildHintStartTime; + /* 0x3BBC */ public float NotificationJetpackTime; + /* 0x3BC0 */ public float NotificationShieldTime; + /* 0x3BC4 */ public float NotificationShipBoostTime; + /* 0x3BC8 */ public float NotificationShipBoostTimeVR; + /* 0x3BCC */ public float NotificationCantFireTime; + /* 0x3BD0 */ public float NotificationDangerTime; + /* 0x3BD4 */ public float NotificationScanTime; + /* 0x3BD8 */ public float NotificationScanTimeCutoff; + /* 0x3BDC */ public float NotificationMessageCycleTime; + /* 0x3BE0 */ public float NotificationMaxPageHintTime; + /* 0x3BE4 */ public float NotificationShipJumpMinTime; + /* 0x3BE8 */ public float NotificationShipJumpReminderTime; + /* 0x3BEC */ public float NotificationShipJumpReminderTutorial; + /* 0x3BF0 */ public float NotificationShipBoostMinTime; + /* 0x3BF4 */ public float NotificationShipBoostReminderTime; + /* 0x3BF8 */ public float NotificationShipBoostReminderTimeTutorial; + /* 0x3BFC */ public float LandNotifySpeedThreshold; + /* 0x3C00 */ public float LandNotifyHeightThreshold; + /* 0x3C04 */ public float LandNotifyTimeThreshold; + /* 0x3C08 */ public float NotificationTimeBeforeHeridiumMarker; + /* 0x3C0C */ public float NotificationUrgentMessageTime; + /* 0x3C10 */ public float NotificationGoToSpaceStationWait; + /* 0x3C14 */ public float NotificationMonolithMissionWait; + /* 0x3C18 */ public float NotificationFinalMissionWait; + /* 0x3C1C */ public float NotificationWaypointReachDistance; + /* 0x3C20 */ public float NotificationBridgeReachDistance; + /* 0x3C24 */ public float NotificationDiscoveryIdleTime; + /* 0x3C28 */ public float NotificationInfoIdleTime; + /* 0x3C2C */ public float NotificationNewTechIdleTime; + /* 0x3C30 */ public float NotificationScanEventMissionIdleTime; + /* 0x3C34 */ public float NotificationDeviceIdleTime; + /* 0x3C38 */ public float NotificationMissionHintTime; + /* 0x3C3C */ public float NotificationMissionHintTimeCritical; + /* 0x3C40 */ public float NotificationMissionHintTimeSecondary; + /* 0x3C44 */ public Vector2f NotificationMissionHintPauseTime; + /* 0x3C4C */ public Vector2f NotificationMissionHintPauseTimeCritical; + /* 0x3C54 */ public Vector2f NotificationMissionHintPauseTimeSecondary; + /* 0x3C5C */ public float ManualNotificationPauseTime; + /* 0x3C60 */ public float TooltipTime; + /* 0x3C64 */ public float InventoryIconTime; + /* 0x3C68 */ public float MessageNotificationTime; + /* 0x3C6C */ public float MessageTimeQuick; + /* 0x3C70 */ public float ItemReceivedMessageTimeToAdd; + /* 0x3C74 */ public float DeathMessageSwitchTime; + /* 0x3C78 */ public float DeathMessageTotalTime; + /* 0x3C80 */ public Colour DeathMessageColour; + /* 0x3C90 */ public Colour PinnedRecipeBorder; + /* 0x3CA0 */ public NMSString0x20 DistanceUnitM; + /* 0x3CC0 */ public NMSString0x20 DistanceUnitKM; + /* 0x3CE0 */ public NMSString0x20 DistanceUnitMpS; + /* 0x3D00 */ public float ZoomHUDElementsOffsetX; + /* 0x3D04 */ public float ZoomHUDElementsOffsetY; + /* 0x3D08 */ public float ZoomHUDElementTime; + /* 0x3D0C */ public float HUDElementsOffsetHMDSide; + /* 0x3D10 */ public float HUDElementsOffsetHMDTop; + /* 0x3D14 */ public float HUDElementsOffsetHMDBottom; + /* 0x3D18 */ public float HUDElementsOffsetX_0; + /* 0x3D1C */ public float HUDElementsOffsetY_0; + /* 0x3D20 */ public float HUDElementsOffsetX_1; + /* 0x3D24 */ public float HUDElementsOffsetY_1; + /* 0x3D28 */ public float HUDElementsOffsetX_2; + /* 0x3D2C */ public float HUDElementsOffsetY_2; + /* 0x3D30 */ public float HUDElementsOffsetX_3; + /* 0x3D34 */ public float HUDElementsOffsetY_3; + /* 0x3D38 */ public float HUDElementsOffsetX_4; + /* 0x3D3C */ public float HUDElementsOffsetY_4; + /* 0x3D40 */ public float HUDElementsOffsetX_5; + /* 0x3D44 */ public float HUDElementsOffsetY_5; + /* 0x3D48 */ public GcWorldUISettings WorldUISettings; + /* 0x3D98 */ public float PauseMenuHoldTime; + /* 0x3D9C */ public Vector2f PlanetLabelOffset; + /* 0x3DA4 */ public Vector2f PlanetMeasureOffset; + /* 0x3DAC */ public Vector2f PlanetLineOffset; + /* 0x3DB4 */ public float PlanetLabelTime; + /* 0x3DB8 */ public float PlanetLabelAngle; + /* 0x3DC0 */ public Colour ItemSlotColourSubstance; + /* 0x3DD0 */ public Colour ItemSlotColourTech; + /* 0x3DE0 */ public Colour ItemSlotColourTechCharge; + /* 0x3DF0 */ public Colour ItemSlotColourTechDamage; + /* 0x3E00 */ public Colour ItemSlotColourPartiallyInstalled; + /* 0x3E10 */ public float ItemSlotColourTechChargeRate; + /* 0x3E20 */ public Colour ItemSlotColourProduct; + /* 0x3E30 */ public Colour ItemSlotTextColourSubstance; + /* 0x3E40 */ public Colour ItemSlotTextColourTech; + /* 0x3E50 */ public Colour ItemSlotTextColourProduct; + /* 0x3E60 */ public float InteractionScanScanTime; + /* 0x3E64 */ public float InteractionScanMinTime; + /* 0x3E68 */ public float InteractionScanDisplayTime; + /* 0x3E6C */ public float InteractionScanSlapTime; + /* 0x3E70 */ public float InteractionScanSlapScale; + /* 0x3E74 */ public float InteractionScanSlapOverallTime; + /* 0x3E78 */ public TkCurveType InteractionScanSlapCurve; + /* 0x3E7C */ public float ShipHUDMissileLockSizeMin; + /* 0x3E80 */ public float ShipHUDMissileLockSizeMax; + /* 0x3E84 */ public float ShipHUDMissileLockSpringSlow; + /* 0x3E88 */ public float ShipHUDMissileLockSpringFast; + /* 0x3E8C */ public float ShipHUDMaxOffscreenTargetDist; + /* 0x3E90 */ public float ShipHUDTargetRadius; + /* 0x3E94 */ public float ShipHUDTargetTriangleRadius; + /* 0x3E98 */ public float ShipHUDTargetAlpha; + /* 0x3E9C */ public float ShipHUDTargetArrowLength; + /* 0x3EA0 */ public float ShipHUDTargetMinDist; + /* 0x3EA4 */ public float ShipHUDTargetRange; + /* 0x3EA8 */ public float ShipHUDTargetScale; + /* 0x3EAC */ public float ShipHUDTargetArrowsRotationRate; + /* 0x3EB0 */ public Colour ShipHUDTargetArrowsColourOutOfRange; + /* 0x3EC0 */ public Colour ShipHUDTargetArrowsColourThreat; + /* 0x3ED0 */ public Colour ShipHUDTargetArrowsColourLocal; + /* 0x3EE0 */ public List ShipHUDTargetArrowsColour; + /* 0x3EF0 */ public Colour ShipHUDAimTargetColour; + /* 0x3F00 */ public Colour ShipHUDAimTargetCritColour; + /* 0x3F10 */ public float ShipHUDHitPointTime; + /* 0x3F14 */ public float ShipHUDHitPointSize; + /* 0x3F18 */ public float TargetScreenFoV; + /* 0x3F1C */ public float TargetScreenDistance; + /* 0x3F20 */ public Vector2f TargetScreenCamOffset; + /* 0x3F28 */ public float InventoryFullMessageRepeatTime; + /* 0x3F2C */ public float HoldTimerResetTime; + /* 0x3F30 */ public bool ModelRendererBGPass; + /* 0x3F31 */ public bool ModelRendererPass1; + /* 0x3F32 */ public bool ModelRendererPass2; + /* 0x3F34 */ public float HazardScreenEffectPulseRate; + /* 0x3F38 */ public float KeepHazardBarActiveTime; + /* 0x3F3C */ public float KeepSecondHazardBarActiveTime; + /* 0x3F40 */ public float HazardBarPulseTime; + /* 0x3F44 */ public float HazardScreenEffectPulseTime; + /* 0x3F48 */ public float HazardScreenEffectStrength; + /* 0x3F4C */ public float HazardWarningPulseTime; + /* 0x3F50 */ public float HazardWarningPulseStrength; + /* 0x3F54 */ public float HazardPainPulseStrength; + /* 0x3F58 */ public float ShieldSpringTime; + /* 0x3F5C */ public float ShieldPulseTime; + /* 0x3F60 */ public float ShieldHazardPulseRate; + /* 0x3F64 */ public bool ShieldHUDAlwaysOn; + /* 0x3F68 */ public float ShieldHazardPulseThreshold; + /* 0x3F6C */ public float AlwaysOnHazardThreshold; + /* 0x3F70 */ public float AlwaysOnHazardStrengthTox; + /* 0x3F74 */ public float AlwaysOnHazardStrengthHeat; + /* 0x3F78 */ public float AlwaysOnHazardStrengthRad; + /* 0x3F7C */ public float AlwaysOnHazardStrengthCold; + /* 0x3F80 */ public float AlwaysOnHazardMultiplierTox; + /* 0x3F84 */ public float AlwaysOnHazardMultiplierHeat; + /* 0x3F88 */ public float AlwaysOnHazardMultiplierRad; + /* 0x3F8C */ public float AlwaysOnHazardMultiplierCold; + /* 0x3F90 */ public float HazardPulseRate; + /* 0x3F98 */ public List HazardTextures; + /* 0x3FA8 */ public List HazardNormalMaps; + /* 0x3FB8 */ public List HazardHeightmaps; + /* 0x3FC8 */ public NMSString0x80 CamoTexture; + /* 0x4048 */ public NMSString0x80 CamoNormalTexture; + /* 0x40C8 */ public float IconPulseRate; + /* 0x40D0 */ public Colour EnergyBgColour; + /* 0x40E0 */ public Colour EnergyBgPulseColour; + /* 0x40F0 */ public Colour HazardBgPulseColour; + /* 0x4100 */ public Colour HazardDamagePulseColour; + /* 0x4110 */ public Colour ShieldColour; + /* 0x4120 */ public Colour ShieldDamageColour; + /* 0x4130 */ public Colour ShieldBgColour; + /* 0x4140 */ public Colour ShieldDamageBgColour; + /* 0x4150 */ public Vector2f ScanLabelOffset; + /* 0x4158 */ public Vector2f InteractionLabelOffset; + /* 0x4160 */ public Vector2f InteractionLabelOffset_1; + /* 0x4168 */ public Vector2f InteractionLabelSize; + /* 0x4170 */ public Vector2f InteractionLabelLineOffset; + /* 0x4178 */ public float InteractionLabelRadiusScaler; + /* 0x417C */ public float InteractionLabelHeight; + /* 0x4180 */ public float InteractionLabelLineAlpha; + /* 0x4184 */ public float InteractionIconInnerRadius; + /* 0x4188 */ public float InteractionIconOuterRadius; + /* 0x418C */ public float InteractionLabelPixelHeightMin; + /* 0x4190 */ public float InteractionLabelPixelHeightMax; + /* 0x4194 */ public float ScanTime; + /* 0x41A0 */ public GcModelViewCollection ModelViews; + /* 0x6060 */ public Colour CursorColour; + /* 0x6070 */ public Colour CursorConfirmColour; + /* 0x6080 */ public Colour CursorTransferUploadColour; + /* 0x6090 */ public Colour CursorDeleteColour; + /* 0x60A0 */ public float CursorHoverSlowFactor; + /* 0x60A4 */ public float CursorHoverSlowFactorMin; + /* 0x60A8 */ public float FrontendBGAlpha; + /* 0x60AC */ public float FrontendConfirmTimeMouseMultiplier; + /* 0x60B0 */ public float FrontendConfirmTimeFast; + /* 0x60B4 */ public float FrontendTouchConfirmTimeFastMultiplier; + /* 0x60B8 */ public float FrontendConfirmTime; + /* 0x60BC */ public float FrontendConfirmTimeSlow; + /* 0x60C0 */ public TkCurveType FrontendConfirmCurve; + /* 0x60C4 */ public float FrontendCursorSize; + /* 0x60C8 */ public float FrontendCursorOffset; + /* 0x60CC */ public float PopupXClampOffset; + /* 0x60D0 */ public float PopupXClampOffsetRightAligned; + /* 0x60D4 */ public float PopupSlotWidthOffset; + /* 0x60D8 */ public float FrontendCursorWidth; + /* 0x60DC */ public float FrontendDeactivateTime; + /* 0x60E0 */ public float FrontendDeactivateSplit; + /* 0x60E4 */ public float FrontendActivateTime; + /* 0x60E8 */ public float FrontendActivateSplit; + /* 0x60EC */ public float FrontendStatCircleWidth; + /* 0x60F0 */ public float FrontendStatCircleWidthExtra; + /* 0x60F4 */ public float FrontendBootTime; + /* 0x60F8 */ public float FrontendBootBarTime; + /* 0x60FC */ public TkCurveType FrontendBootBarCurve; + /* 0x6100 */ public float PopupDebounceTime; + /* 0x6104 */ public float PopupActivateTime; + /* 0x6108 */ public float PopupDeactivateTime; + /* 0x610C */ public TkCurveType PopupActivateCurve1; + /* 0x610D */ public TkCurveType PopupActivateCurve2; + /* 0x6110 */ public float ByteBeatTreeLineWidth; + /* 0x6120 */ public Colour ByteBeatTreeLineColour; + /* 0x6130 */ public float ByteBeatVisLineWidth; + /* 0x6140 */ public Colour ByteBeatVisLineColour; + /* 0x6150 */ public Colour ByteBeatVisGridColour; + /* 0x6160 */ public float ByteBeatIconLineWidth; + /* 0x6164 */ public float ByteBeatIconPad; + /* 0x6168 */ public float ByteBeatArpLineWidth; + /* 0x616C */ public float ByteBeatArpRadius; + /* 0x6170 */ public float ByteBeatArpPad; + /* 0x6180 */ public Colour ByteBeatArpGridInactiveColour; + /* 0x6190 */ public Colour ByteBeatArpGridActiveColour; + /* 0x61A0 */ public Colour ByteBeatArpPipInactiveColour; + /* 0x61B0 */ public Colour ByteBeatArpPipActiveColour; + /* 0x61C0 */ public float ByteBeatSequencerLineWidth; + /* 0x61C4 */ public float ByteBeatSequencerPad; + /* 0x61C8 */ public float ByteBeatPartSequencerPad; + /* 0x61CC */ public float ByteBeatSequencerCornerRadius; + /* 0x61D0 */ public float ByteBeatRhythmBeatPad; + /* 0x61D4 */ public float ByteBeatSequencerInactiveSaturation; + /* 0x61D8 */ public float ByteBeatSequencerActiveSaturation; + /* 0x61DC */ public float ByteBeatRhythmSequencerInactiveSaturation; + /* 0x61E0 */ public float ByteBeatRhythmSequencerActiveSaturation; + /* 0x61E4 */ public float ByteBeatSequencerUnpoweredTintStrength; + /* 0x61F0 */ public Colour ByteBeatSequencerUnpoweredTint; + /* 0x6200 */ public Colour ByteBeatSequencerBGColourActive; + /* 0x6210 */ public Colour ByteBeatSequencerBGColourInactive; + /* 0x6220 */ public Colour ByteBeatSequencerRimColourActive; + /* 0x6230 */ public Colour ByteBeatSequencerRimColourInactive; + /* 0x6240 */ public Colour ByteBeatRhythmColour0Active; + /* 0x6250 */ public Colour ByteBeatRhythmColour0Inactive; + /* 0x6260 */ public Colour ByteBeatRhythmColour1Active; + /* 0x6270 */ public Colour ByteBeatRhythmColour1Inactive; + /* 0x6280 */ public Colour ByteBeatRhythmColour2Active; + /* 0x6290 */ public Colour ByteBeatRhythmColour2Inactive; + /* 0x62A0 */ public Colour ByteBeatSequencerHighlightColour; + /* 0x62B0 */ public float ByteBeatSequencerHighlightLineWidth; + /* 0x62B4 */ public float ByteBeatSliderLineWidth; + /* 0x62B8 */ public float ByteBeatSliderPad; + /* 0x62BC */ public float ByteBeatSliderCornerRadius; + /* 0x62C0 */ public Colour ByteBeatSliderFGColour; + /* 0x62D0 */ public Colour ByteBeatSliderTextActiveColour; + /* 0x62E0 */ public Colour ByteBeatSliderTextInactiveColour; + /* 0x62F0 */ public float ByteBeatSwitchPanelAlpha; + /* 0x62F4 */ public float ByteBeatSwitchPanelSplit; + /* 0x6300 */ public Colour RadialMenuInnerColourSelected; + /* 0x6310 */ public Colour RadialMenuOuterColourSelected; + /* 0x6320 */ public Colour RadialMenuInnerColourUnselected; + /* 0x6330 */ public Colour RadialMenuOuterColourUnselected; + /* 0x6340 */ public Colour RadialMenuInnerColourDisabled; + /* 0x6350 */ public Colour RadialMenuOuterColourDisabled; + /* 0x6360 */ public float RadialMenuInnerRadius; + /* 0x6364 */ public float RadialMenuInnerRadiusCursor; + /* 0x6368 */ public float RadialMenuWedgeOffset; + /* 0x636C */ public float HatchPulseSpeed; + /* 0x6370 */ public float HatchPulseWidth; + /* 0x6374 */ public float HatchPulsePauseTime; + /* 0x6378 */ public int HatchCount; + /* 0x637C */ public float HatchCursorRadius; + /* 0x6380 */ public float HatchAlphaMain; + /* 0x6384 */ public float HatchAlphaBase; + /* 0x6388 */ public float HatchAlphaCursor; + /* 0x638C */ public float FrontendDoFNearPlaneMin; + /* 0x6390 */ public float FrontendDoFNearPlaneMax; + /* 0x6394 */ public float FrontendDoFFarPlaneMin; + /* 0x6398 */ public float FrontendDoFFarPlaneMax; + /* 0x639C */ public float FrontendDoFFarPlaneFadeMin; + /* 0x63A0 */ public float FrontendDoFFarPlaneFadeMax; + /* 0x63A4 */ public float FrontendDoFBlurMultiplier; + /* 0x63A8 */ public bool FrontendDoFEnableBokeh; + /* 0x63A9 */ public TkCurveType FrontendDoFCurve; + /* 0x63AC */ public float FrontendShineSpeed; + /* 0x63B0 */ public float FrontendToolbarTextHeight; + /* 0x63B4 */ public float FrontendToolbarTextHeightSelected; + /* 0x63B8 */ public float FrontendTitleFontSpacing; + /* 0x63BC */ public float NGuiPadSensitivity; + /* 0x63C0 */ public float NGuiMouseSensitivity; + /* 0x63C4 */ public Vector2f NGuiTouchPadSensitivity; + /* 0x63D0 */ public Colour TargetMarkerColour; + /* 0x63E0 */ public Colour TargetMarkerHighlightColour; + /* 0x63F0 */ public float TargetMarkerScaleStart; + /* 0x63F4 */ public float TargetMarkerScaleEnd; + /* 0x63F8 */ public float TargetMarkerFadeAngleMin; + /* 0x63FC */ public float TargetMarkerFadeAngleRange; + /* 0x6400 */ public float HitMarkerPulseSize; + /* 0x6404 */ public float HitMarkerPulseSizeStatic; + /* 0x6408 */ public float HitMarkerPulseTime; + /* 0x6410 */ public Colour WantedColour; + /* 0x6420 */ public Colour UnseenItemColour; + /* 0x6430 */ public float PlanetPoleMaxDotProduct; + /* 0x6434 */ public float SpaceMapLineWidth; + /* 0x6438 */ public float SpaceMapLineBaseScale; + /* 0x643C */ public float SpaceMapLineBaseFade; + /* 0x6440 */ public float SpaceMapShipCombineDistance; + /* 0x6444 */ public bool SpaceMapShowPlanets; + /* 0x6445 */ public bool SpaceMapShowPlanetLines; + /* 0x6446 */ public bool SpaceMapShowStation; + /* 0x6447 */ public bool SpaceMapShowStationLines; + /* 0x6448 */ public bool SpaceMapShowAnomaly; + /* 0x6449 */ public bool SpaceMapShowAnomalyLines; + /* 0x644A */ public bool SpaceMapShowNexus; + /* 0x644B */ public bool SpaceMapShowNexusLines; + /* 0x644C */ public bool SpaceMapShowShips; + /* 0x644D */ public bool SpaceMapShowShipLines; + /* 0x644E */ public bool SpaceMapShowFrieghters; + /* 0x644F */ public bool SpaceMapShowFrieghterLines; + /* 0x6450 */ public bool SpaceMapShowPulseEncounters; + /* 0x6451 */ public bool SpaceMapShowPulseEncounterLines; + /* 0x6454 */ public float SpaceMapFoV; + /* 0x6458 */ public float SpaceMapAspectRatio; + /* 0x645C */ public float SpaceMapDistanceScale; + /* 0x6460 */ public float SpaceMapDistanceLogScaler; + /* 0x6464 */ public TkCurveType SpaceMapDistanceCurve; + /* 0x6468 */ public float SpaceMapScaleMin; + /* 0x646C */ public float SpaceMapScaleRangeMin; + /* 0x6470 */ public float SpaceMapScaleRangeMax; + /* 0x6474 */ public float SpaceMapObjectScale; + /* 0x6478 */ public float SpaceMapFreighterScale; + /* 0x647C */ public float SpaceMapStationScale; + /* 0x6480 */ public float SpaceMapAnomalyScale; + /* 0x6484 */ public float SpaceMapPlanetScale; + /* 0x6488 */ public float SpaceMapPlanetLineOffset; + /* 0x648C */ public float SpaceMapMoonScale; + /* 0x6490 */ public float SpaceMapActionScale; + /* 0x6494 */ public float SpaceMapShipScale; + /* 0x6498 */ public float SpaceMapPirateFrigateScale; + /* 0x649C */ public float SpaceMapPirateFreighterScale; + /* 0x64A0 */ public float SpaceMapMarkerScale; + /* 0x64A4 */ public float SpaceMapDistance; + /* 0x64A8 */ public float SpaceMapMaxTraderDistance; + /* 0x64AC */ public float SpaceMapDistanceMultiplier; + /* 0x64B0 */ public float SpaceMapHorizonThickness; + /* 0x64B4 */ public float SpaceMapFadeAngleMin; + /* 0x64B8 */ public float SpaceMapFadeAngleMax; + /* 0x64BC */ public float SpaceMapCamHeight; + /* 0x64C0 */ public float SpaceMapCamAngle; + /* 0x64C4 */ public float SpaceMapCamDistance; + /* 0x64C8 */ public float SpaceMapShipScaleMin; + /* 0x64CC */ public float SpaceMapLightPitch; + /* 0x64D0 */ public float SpaceMapLightYaw; + /* 0x64E0 */ public Colour SpaceFriendlyShipLineColour; + /* 0x64F0 */ public Colour SpaceEnemyShipLineColour; + /* 0x6500 */ public Vector3f SpaceMapPosScaler; + /* 0x6510 */ public Colour SpaceMapAttackColour; + /* 0x6520 */ public Colour SpaceMapOtherPlayerColour; + /* 0x6530 */ public Colour SpaceMapThreatColour; + /* 0x6540 */ public Colour SpaceMapNeutralColour; + /* 0x6550 */ public Colour SpaceMapSquadronColour; + /* 0x6560 */ public Colour SpaceMapDeathPointColour; + /* 0x6570 */ public GcSpaceMapObjectData SpaceMapMarkerData; + /* 0x65A0 */ public GcSpaceMapObjectData SpaceMapPlanetData; + /* 0x65D0 */ public GcSpaceMapObjectData SpaceMapStationData; + /* 0x6600 */ public GcSpaceMapObjectData SpaceMapNexusData; + /* 0x6630 */ public GcSpaceMapObjectData SpaceMapAtlasData; + /* 0x6660 */ public GcSpaceMapObjectData SpaceMapBlackHoleData; + /* 0x6690 */ public GcSpaceMapObjectData SpaceMapShipData; + /* 0x66C0 */ public GcSpaceMapObjectData SpaceMapFreighterData; + /* 0x66F0 */ public GcSpaceMapObjectData SpaceMapPulseEncounterData; + /* 0x6720 */ public Vector2f HUDTargetHealthOffset; + /* 0x6728 */ public Vector2f HUDTargetHealthSize; + /* 0x6730 */ public Vector2f HUDTargetHealthIconOffset; + /* 0x6738 */ public float HUDTargetHealthIconSize; + /* 0x673C */ public float HUDTargetHealthDangerTime; + /* 0x6740 */ public float HUDTargetMarkerOffset; + /* 0x6744 */ public float HUDTargetMarkerSize; + /* 0x6748 */ public float HUDTargetIconOffset; + /* 0x674C */ public float HUDTargetIconSize; + /* 0x6750 */ public float HUDMarkerOffset; + /* 0x6760 */ public Colour HUDMarkerColour; + /* 0x6770 */ public Colour HUDSpaceshipColour; + /* 0x6780 */ public Colour HUDRelicMarkerColourDiscovered; + /* 0x6790 */ public Colour HUDRelicMarkerColourUnknown; + /* 0x67A0 */ public Colour HUDOutpostColour; + /* 0x67B0 */ public Vector2f HUDMarkerPrimaryIndicatorOffset; + /* 0x67B8 */ public Vector2f HUDMarkerCompassPrimaryIndicatorOffset; + /* 0x67C0 */ public NMSString0x100 HUDMarkerIcon; + /* 0x68C0 */ public NMSString0x100 HUDMarkerPrimaryIndicatorIcon; + /* 0x69C0 */ public NMSString0x100 HUDMarkerColourIcon; + /* 0x6AC0 */ public NMSString0x100 HUDPointIcon; + /* 0x6BC0 */ public NMSString0x100 HUDSpaceshipIcon; + /* 0x6CC0 */ public NMSString0x100 HUDSaveIcon; + /* 0x6DC0 */ public NMSString0x100 HUDDeathPointIcon; + /* 0x6EC0 */ public NMSString0x100 HUDHexAnimIcon; + /* 0x6FC0 */ public NMSString0x100 HUDCircleAnimIcon; + /* 0x70C0 */ public float HUDMarkerAnimSpeed; + /* 0x70C4 */ public float HUDMarkerAnimScale; + /* 0x70C8 */ public float HUDMarkerAnimOffset; + /* 0x70CC */ public float HUDMarkerAnimLoopTime; + /* 0x70D0 */ public TkCurveType HUDMarkerAnimAlphaCurve; + /* 0x70D1 */ public TkCurveType HUDMarkerAnimCurve; + /* 0x70D4 */ public float HUDMarkerPrimaryIndicatorSize; + /* 0x70D8 */ public float HUDPetMarkerAngleTest; + /* 0x70DC */ public float HUDPetMarkerAngleVRMul; + /* 0x70E0 */ public float HUDMarkerHoverAngleTestGround; + /* 0x70E4 */ public float HUDPetCentreScreenAngle; + /* 0x70E8 */ public float HUDNetworkMarkerHoverAngleTestGround; + /* 0x70EC */ public float HUDMarkerWideHoverAngleTest; + /* 0x70F0 */ public float HUDMarkerHoverAngleTestShip; + /* 0x70F4 */ public float HUDMarkerHoverShowLargeAngleTest; + /* 0x70F8 */ public float HUDNetworkMarkerHoverShowLargeAngleTest; + /* 0x70FC */ public float HUDNetworkMarkerHoverAngleVRMul; + /* 0x7100 */ public float HUDMarkerShipOffsetMaxDist; + /* 0x7104 */ public float HUDMarkerShipOffsetMinDist; + /* 0x7108 */ public float HUDMarkerNearFadeDistance; + /* 0x710C */ public float HUDMarkerNearFadeRange; + /* 0x7110 */ public float HUDMarkerFarDistance; + /* 0x7114 */ public float HUDMarkerFarFadeRange; + /* 0x7118 */ public float HUDMarkerScalerMin; + /* 0x711C */ public float HUDMarkerScalerRange; + /* 0x7120 */ public float HUDMarkerScalerSizeMin; + /* 0x7124 */ public float HUDMarkerScalerSizeMax; + /* 0x7128 */ public float HUDMarkerHorizonBlendRange; + /* 0x712C */ public float HUDMarkerAlpha; + /* 0x7130 */ public float HUDMarkerModelFadeRange; + /* 0x7134 */ public float HUDMarkerModelFadeMinHeight; + /* 0x7138 */ public float HUDMarkerShowActualIconDistance; + /* 0x713C */ public float HUDMarkerShowActualSpaceIconDistance; + /* 0x7140 */ public float HUDMarkerActiveTime; + /* 0x7144 */ public TkCurveType HUDMarkerActiveCurve; + /* 0x7148 */ public float HUDMarkerIconHoverMinScale; + /* 0x714C */ public float AltimeterResolution; + /* 0x7150 */ public float AltimeterLineSpacing; + /* 0x7154 */ public float AltimeterWidth; + /* 0x7158 */ public float AltimeterMin; + /* 0x715C */ public float AltimeterMax; + /* 0x7160 */ public float AltimeterTextSize; + /* 0x7164 */ public float AltimeterMinValue; + /* 0x7170 */ public Colour AltimeterBandColour1; + /* 0x7180 */ public Colour AltimeterBandColour2; + /* 0x7190 */ public Colour AltimeterColour1; + /* 0x71A0 */ public Colour AltimeterColour2; + /* 0x71B0 */ public float LockOnMarkerSize; + /* 0x71B4 */ public float LockOnMarkerSizeLock; + /* 0x71C0 */ public Colour LockOnMarkerActiveColour; + /* 0x71D0 */ public float AsteroidMarkerMinDisplayDistance; + /* 0x71D4 */ public float AsteroidMarkerMinDisplayAngleDegrees; + /* 0x71D8 */ public float MissileIconAttackPulseTime; + /* 0x71DC */ public float MissileIconAttackPulseAmount; + /* 0x71E0 */ public float NGuiModelRotationDegreesX; + /* 0x71E4 */ public float NGuiModelRotationDegreesY; + /* 0x71E8 */ public float NGuiModelRotationDegreesZ; + /* 0x71EC */ public float NGuiModelViewDistanceGlobal; + /* 0x71F0 */ public float NGuiModelViewDistanceSuitPage; + /* 0x71F4 */ public float NGuiModelViewDistanceWeaponPage; + /* 0x71F8 */ public float NGuiModelViewDistanceShipPage; + /* 0x71FC */ public float NGuiModelViewDistanceDiscoveryPage; + /* 0x7200 */ public float NGuiModelViewFov; + /* 0x7204 */ public float NGuiModelViewCdSmoothTime; + /* 0x7208 */ public float NGuiAltPlacementDistanceScrollSpeed; + /* 0x720C */ public float NGuiPlacementAngleScrollSpeed; + /* 0x7210 */ public float NGuiModelViewFractionOfBBHeightAboveReflectivePlane; + /* 0x7220 */ public Vector3f NGuiModelTranslationFactors; + /* 0x7230 */ public Vector3f NGuiModelTranslationFactorsInteraction; + /* 0x7240 */ public Vector3f NGuiThumbnailModelTranslationFactors; + /* 0x7250 */ public float NGuiThumbnailModelRotationDegreesY; + /* 0x7254 */ public float NGuiThumbnailModelViewDistance; + /* 0x7258 */ public float NGuiCursorOffsetMultiplier; + /* 0x725C */ public float NGuiActiveAreaOffsetTime; + /* 0x7260 */ public Vector2f NGuiMin2DParallax; + /* 0x7268 */ public Vector2f NGuiMax2DParallax; + /* 0x7270 */ public Vector2f NGuiModelParallax; + /* 0x7278 */ public Vector2f NGuiShipInteractParallax; + /* 0x7280 */ public Vector2f InteractionWorldParallax; + /* 0x7288 */ public float TargetParallaxMouseMultiplier; + /* 0x728C */ public float TargetParallaxMaintenancePageMultiplier; + /* 0x7290 */ public float NGuiModelViewFadeInAfterRenderTime; + /* 0x7294 */ public TkCurveType NGuiModelViewFadeInAfterRenderCurve; + /* 0x7295 */ public bool NGuiUseSeparateLayersForModelAndReflection; + /* 0x7298 */ public GcDiscoveryHelperTimings DiscoveryHelperTimings; + /* 0x72A8 */ public GcHUDStartupTable IntroTiming; + /* 0x73F8 */ public GcHUDStartupTable IntroTimingFreighter; + /* 0x7548 */ public GcHUDStartupTable IntroTimingFreighterRepaired; + /* 0x7698 */ public GcInventorySlotActionData InstallTechSlotAction; + /* 0x76B4 */ public GcInventorySlotActionData BuildProductSlotAction; + /* 0x76D0 */ public GcInventorySlotActionData ChargeSlotAction; + /* 0x76EC */ public GcInventorySlotActionData RepairSlotAction; + /* 0x7708 */ public GcInventorySlotActionData NewSlotRevealAction; + /* 0x7724 */ public GcInventorySlotActionData NewSlotPulseAction; + /* 0x7740 */ public GcInventorySlotActionData InventoryHintAction; + /* 0x775C */ public GcInventorySlotActionData InventoryHintActionNoGlow; + /* 0x7778 */ public float ReportBaseFlashTime; + /* 0x777C */ public float ReportBaseFlashIntensity; + /* 0x7780 */ public float ReportBaseFlashDelay; + /* 0x7784 */ public float ReportCameraSpeed; + /* 0x7788 */ public float AmbientModeFadeTime; + /* 0x778C */ public bool HideQuickMenuControls; + /* 0x778D */ public bool QuickMenuAllowCycle; + /* 0x7790 */ public float TextChatMaxDisplayTime; + /* 0x7794 */ public float TextChatStayBigAfterTextInput; + /* 0x7798 */ public int BuildingShopMaxItems; + /* 0x779C */ public float ShipScreenTexScale; + /* 0x77A0 */ public float MultiplayerTeleportEffectDisappearTime; + /* 0x77A4 */ public float MultiplayerTeleportEffectAppearTime; + /* 0x77A8 */ public int AbandonedFreighterAirlockRoomNumber; + /* 0x77B0 */ public TkNGuiTreeViewTemplate SceneInfoTreeViewTemplate; + /* 0x7830 */ public TkNGuiTreeViewTemplate FileBrowserTreeViewTemplate; + /* 0x78B0 */ public TkNGuiTreeViewTemplate SkeletonToolsTreeViewTemplate; + /* 0x7930 */ public float SettlementStatInnerRadius; + /* 0x7934 */ public float SettlementStatOuterRadius; + /* 0x7940 */ public Colour SettlementStatColour; + /* 0x7950 */ public Colour SettlementStatBackgroundColour; [NMS(Size = 0x7, EnumType = typeof(GcSettlementStatType.SettlementStatTypeEnum))] - /* 0x7950 */ public NMSString0x20A[] SettlementStatLoc; + /* 0x7960 */ public NMSString0x20A[] SettlementStatLoc; [NMS(Size = 0x7, EnumType = typeof(GcSettlementStatType.SettlementStatTypeEnum))] - /* 0x7A30 */ public NMSString0x20A[] SettlementStatFormatLoc; + /* 0x7A40 */ public NMSString0x20A[] SettlementStatFormatLoc; [NMS(Size = 0x7, EnumType = typeof(GcSettlementStatType.SettlementStatTypeEnum))] - /* 0x7B10 */ public TkTextureResource[] SettlementStatBasicImages; + /* 0x7B20 */ public TkTextureResource[] SettlementStatBasicImages; [NMS(Size = 0x7, EnumType = typeof(GcSettlementStatType.SettlementStatTypeEnum))] - /* 0x7EAC */ public TkTextureResource[] SettlementStatPositiveImages; + /* 0x7EBC */ public TkTextureResource[] SettlementStatPositiveImages; [NMS(Size = 0x7, EnumType = typeof(GcSettlementStatType.SettlementStatTypeEnum))] - /* 0x8248 */ public TkTextureResource[] SettlementStatNegativeImages; - /* 0x85E4 */ public float MinimumHoldFill; - /* 0x85E8 */ public bool EnableAccessibleUIOnSwitch; - /* 0x85EC */ public float AccessibleUIPopupScale; - /* 0x85F0 */ public float AccessibleUIHUDPopupScale; - /* 0x85F4 */ public float DetailMessageDismissTime; - /* 0x85F8 */ public float ManualScrollChangePerInputMin; - /* 0x85FC */ public float ManualScrollChangePerInputMax; - /* 0x8600 */ public float InfoPortalGuideCycleTime; - /* 0x8604 */ public float InfoPortalMilestonesCycleTime; - /* 0x8608 */ public float FeedFrigateAnimPeriod; - /* 0x860C */ public int FeedFrigateAnimNumPeriods; - /* 0x8610 */ public float FeedFrigateAnimScaleChange; - /* 0x8614 */ public float FeedFrigateAnimAlphaChange; - /* 0x8618 */ public float TouchScrollMaxDelta; - /* 0x861C */ public float TextTouchScrollCap; - /* 0x8620 */ public float TouchScrollChangePageThreshold; + /* 0x8258 */ public TkTextureResource[] SettlementStatNegativeImages; + /* 0x85F4 */ public float MinimumHoldFill; + /* 0x85F8 */ public bool EnableAccessibleUIOnSwitch; + /* 0x85FC */ public float AccessibleUIPopupScale; + /* 0x8600 */ public float AccessibleUIHUDPopupScale; + /* 0x8604 */ public float DetailMessageDismissTime; + /* 0x8608 */ public float ManualScrollChangePerInputMin; + /* 0x860C */ public float ManualScrollChangePerInputMax; + /* 0x8610 */ public float InfoPortalGuideCycleTime; + /* 0x8614 */ public float InfoPortalMilestonesCycleTime; + /* 0x8618 */ public float FeedFrigateAnimPeriod; + /* 0x861C */ public int FeedFrigateAnimNumPeriods; + /* 0x8620 */ public float FeedFrigateAnimScaleChange; + /* 0x8624 */ public float FeedFrigateAnimAlphaChange; + /* 0x8628 */ public float TouchScrollMaxDelta; + /* 0x862C */ public float TextTouchScrollCap; + /* 0x8630 */ public float TouchScrollChangePageThreshold; } } diff --git a/libMBIN/Source/Version.cs b/libMBIN/Source/Version.cs index db387f78f..3d0f55e33 100644 --- a/libMBIN/Source/Version.cs +++ b/libMBIN/Source/Version.cs @@ -25,7 +25,7 @@ public static class Version { // the Prerelease version should be reset to 1 // When the Release version is incremented: // the Prerelease version should be reset to 0 - internal const string VERSION_STRING = "4.49.0.1"; + internal const string VERSION_STRING = "4.49.0.2"; /// Shorthand for AssemblyVersion.Major public static int Major => AssemblyVersion.Major; diff --git a/libMBIN/libMBIN-Shared.projitems b/libMBIN/libMBIN-Shared.projitems index 5c3a3bf99..491d4b4d2 100644 --- a/libMBIN/libMBIN-Shared.projitems +++ b/libMBIN/libMBIN-Shared.projitems @@ -1040,7 +1040,7 @@ - + @@ -1081,6 +1081,7 @@ +