├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── build.yml │ ├── create-release.yml │ └── publish-to-spacedock.yml ├── .gitignore ├── CHANGELOG.md ├── FormatterTests ├── FormatterTests.cs ├── FormatterTests.csproj └── Properties │ └── AssemblyInfo.cs ├── GameData └── JSI │ ├── Agencies │ ├── Agents.cfg │ ├── JSI.png │ └── JSI_scaled.truecolor │ ├── RPMPodPatches │ ├── BasicMFD │ │ ├── MFD40x20.cfg │ │ ├── PlaneHUD.cfg │ │ ├── graphset.cfg │ │ ├── p0_home40x20.txt │ │ ├── p0_test.txt │ │ ├── p1_landing40x20.txt │ │ ├── p2_orbit40x20.txt │ │ ├── p2_orbit_graphical.txt │ │ ├── p3_target40x20.txt │ │ ├── p4_shipinfo40x20.txt │ │ ├── p5_crew40x20.txt │ │ ├── p6_resources40x20.txt │ │ ├── pa_HUDPFD.txt │ │ ├── pa_PFD.txt │ │ └── pb_graphs.txt │ ├── PatchesMod │ │ ├── DE_mk1pod_IVA.cfg │ │ ├── kp0110-pod-patch.cfg │ │ ├── kp0110-remade-internal.cfg │ │ ├── orbital-orb-patch.cfg │ │ └── orbital-orb-remade-internal.cfg │ └── PatchesStock │ │ ├── crew-cabin-patch.cfg │ │ ├── cupola-patch.cfg │ │ ├── cupola-remade-internal.cfg │ │ ├── mk1-inline-patch.nocfg │ │ ├── mk1-inline-remade-internal.nocfg │ │ ├── mk1-patch.cfg │ │ ├── mk1-remade-internal.cfg │ │ ├── mk12pod-patch.cfg │ │ ├── mk12pod-remade-internal.cfg │ │ ├── mk1cockpit-patch.cfg │ │ ├── mk1cockpit-remade-internal.cfg │ │ ├── mk1lander-remade-internal.cfg │ │ ├── mk1landercan-patch.cfg │ │ ├── mk2-spp-cockpits.cfg │ │ ├── mk2landercan-patch.cfg │ │ ├── mk2landercan-remade-internal.cfg │ │ └── mk3cockpit-patch.cfg │ └── RasterPropMonitor │ ├── Compatibility │ ├── AviationCockpits.cfg │ ├── B9Aerospace.cfg │ ├── DSEV.cfg │ ├── DeepFreeze.cfg │ ├── Endurance.cfg │ ├── Heisenberg.cfg │ ├── Hullcam.cfg │ ├── NMB.cfg │ ├── OPT.cfg │ ├── SSPX.cfg │ ├── ThrustReversers.cfg │ └── modules.cfg │ ├── Library │ ├── Components │ │ ├── HUD │ │ │ ├── heading.dds │ │ │ ├── hud-overlay.dds │ │ │ ├── ladder.dds │ │ │ ├── leftscale.dds │ │ │ ├── model.mu │ │ │ ├── planeHUDdiffuse.png │ │ │ ├── rightscale.dds │ │ │ └── screen.png │ │ ├── MFD40x20v2 │ │ │ ├── MFD40x15v2-Diffuse.dds │ │ │ ├── MFD40x15v2-Emissive.dds │ │ │ ├── model.mu │ │ │ ├── screen-emissive.png │ │ │ └── screen.png │ │ └── NavBall │ │ │ ├── HDG.png │ │ │ ├── NavBall.mu │ │ │ ├── NavBall000.dds │ │ │ └── StaticMask.dds │ ├── Fonts │ │ ├── baseFont.truecolor │ │ ├── extraFont1.truecolor │ │ ├── fontDefinition.txt │ │ └── hudfont.truecolor │ ├── Parts │ │ └── ExternalCameraPart │ │ │ ├── ExternalCameraDiffuse.png │ │ │ ├── external-camera-v2.cfg │ │ │ ├── external-camera.cfg │ │ │ └── external-camera.restockwhitelist │ ├── Props │ │ ├── ASET │ │ │ └── JSIMainCompUnit.cfg │ │ ├── CockpitHandle │ │ │ ├── OpenHandle.mu │ │ │ ├── OpenHandleDiffuse.dds │ │ │ └── eva-hatch.cfg │ │ ├── IndicatorPanelReplacement │ │ │ ├── model000.dds │ │ │ ├── model001.dds │ │ │ └── prop.cfg │ │ ├── InternalAirlock │ │ │ ├── InternalAirLock.mu │ │ │ ├── InternalAirLockDiffuse.dds │ │ │ └── eva-hatch-with-model.cfg │ │ ├── InternalFlagPlate │ │ │ ├── FlagPlate.mu │ │ │ ├── FlagPlate000.png │ │ │ └── prop.cfg │ │ ├── InternalHatch │ │ │ ├── CubeCollider.mu │ │ │ └── eva-hatch.cfg │ │ ├── SimpleProps │ │ │ ├── ActionGroupLabelledButtons.cfg │ │ │ ├── AxisIndicator.cfg │ │ │ ├── Blinkenlichten.cfg │ │ │ ├── JSISwitchable.cfg │ │ │ ├── SASModeButtons.cfg │ │ │ ├── SquareButtons.cfg │ │ │ └── TrimmerKnobs.cfg │ │ └── SwitchWCover │ │ │ ├── SwitchIcons.tga │ │ │ ├── SwitchWCover.mu │ │ │ ├── Switch_w_cover_Diff.dds │ │ │ └── mechSwitch.cfg │ ├── Sounds │ │ └── buttonbeep.ogg │ └── Textures │ │ ├── bg01.png │ │ ├── graphgrid.png │ │ ├── noscansat.png │ │ ├── nosignal.png │ │ ├── scaleLabels.png │ │ └── scalebar.png │ ├── Patches │ └── squad-pitch-bounds.cfg │ ├── Plugins │ ├── 3rdPartyLicenses │ │ ├── digital-7-readme.txt │ │ └── repetition-scrolling-ReadMe.txt │ ├── reduce-iva-cpu-usage.cfg │ └── rpm-config.cfg │ ├── PropBatching.cfg │ ├── RasterPropMonitor.version │ ├── RasterPropMonitor.version.versiontemplate │ ├── rasterpropmonitor-font.assetbundle │ └── rasterpropmonitor-shaders.assetbundle ├── LICENSE.md ├── MechJebRPM ├── MechJebRPM.cs ├── MechJebRPM.csproj ├── MechJebRPMButtons.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── RasterPropMonitor.sln ├── RasterPropMonitor ├── .editorconfig ├── Auxiliary modules │ ├── InternalCameraTargetHelper.cs │ ├── JSIActionGroupSwitch.cs │ ├── JSICallbackAnimator.cs │ ├── JSIExternalCameraSelector.cs │ ├── JSIFlashModule.cs │ ├── JSIInternalBackgroundNoise.cs │ ├── JSIInternalEVAHatch.cs │ ├── JSIInternalFlagDecal.cs │ ├── JSILabel.cs │ ├── JSINavBall.cs │ ├── JSINumericInput.cs │ ├── JSIPropIDFinder.cs │ ├── JSIPropTextureShift.cs │ ├── JSIRadar.cs │ ├── JSISelectivelyVisibleProp.cs │ ├── JSISetInternalCameraFOV.cs │ ├── JSISwitchableVariableLabel.cs │ ├── JSIThrustReverser.cs │ ├── JSIVariableAnimator.cs │ ├── JSIVariableLabel.cs │ └── PropBatcher.cs ├── Core │ ├── AeroExtensions.cs │ ├── ButtonHandler.cs │ ├── CelestialBodyExtensions.cs │ ├── ConfigNodeHolder.cs │ ├── CustomVariable.cs │ ├── DefaultableDictionary.cs │ ├── DynamicMethodDelegateFactory.cs │ ├── FlyingCamera.cs │ ├── IJSIModule.cs │ ├── JSITextMesh.cs │ ├── JSIVesselRecovery.cs │ ├── MappedVariable.cs │ ├── MathExtensions.cs │ ├── MathVariable.cs │ ├── MonitorPage.cs │ ├── OrbitExtensions.cs │ ├── PersistentVariableCollection.cs │ ├── Protractor.cs │ ├── RPMCEvaluators.cs │ ├── RPMCPersistence.cs │ ├── RPMCTriggeredEvent.cs │ ├── RPMGlobals.cs │ ├── RPMShaderLoader.cs │ ├── RPMVCEvaluators.cs │ ├── RPMVCPerModule.cs │ ├── RPMVesselComputer.cs │ ├── RasterPropMonitor.cs │ ├── RasterPropMonitorComputer.cs │ ├── ResourceDataStorage.cs │ ├── SIFormatter.cs │ ├── SelectVariable.cs │ ├── StringProcessor.cs │ ├── TextMenu.cs │ ├── TextRenderer.cs │ ├── UtilityFunctions.cs │ ├── VariableCollection.cs │ ├── VariableHandler.cs │ ├── VariableOrNumber.cs │ └── VisibilityEnabler.cs ├── Handlers │ ├── JSIChatterer.cs │ ├── JSIEngine.cs │ ├── JSIFAR.cs │ ├── JSIFlightLog.cs │ ├── JSIGraphingBackground.cs │ ├── JSIHeadsUpDisplay.cs │ ├── JSIInternalRPMButtons.cs │ ├── JSIKAC.cs │ ├── JSIMechJeb.cs │ ├── JSIOdometer.cs │ ├── JSIOrbitDisplay.cs │ ├── JSIParachute.cs │ ├── JSIPilotAssistant.cs │ ├── JSIPrimaryFlightDisplay.cs │ ├── JSISASMenu.cs │ ├── JSIScienceDisplay.cs │ ├── JSISteerableCamera.cs │ ├── JSITargetMenu.cs │ ├── JSIVariableGraph.cs │ ├── JSIVariablePageTextSwitcher.cs │ ├── KACWrapper.cs │ └── MechJebRPM.cs ├── Properties │ └── AssemblyInfo.cs ├── RasterPropMonitor.csproj ├── RasterPropMonitor.version.props └── RasterPropMonitor.version.props.versiontemplate ├── SCANsatRPM ├── JSISCANsatRPM.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md └── SCANsatRPM.csproj └── Shaders ├── .gitignore ├── Assets ├── Editor │ └── AssetBundleCompiler.cs └── Shaders │ ├── RPM-CroppedDisplayShader.shader │ ├── RPM-DisplayShader.shader │ ├── RPM-FontShader.shader │ ├── RPM-JSILabel.shader │ ├── RPM-blur.shader │ ├── RPM-grayscale.shader │ ├── RPM-greenscale.shader │ └── RPM-noise.shader ├── Packages ├── manifest.json └── packages-lock.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-spacedock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/.github/workflows/publish-to-spacedock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FormatterTests/FormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/FormatterTests/FormatterTests.cs -------------------------------------------------------------------------------- /FormatterTests/FormatterTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/FormatterTests/FormatterTests.csproj -------------------------------------------------------------------------------- /FormatterTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/FormatterTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GameData/JSI/Agencies/Agents.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/Agencies/Agents.cfg -------------------------------------------------------------------------------- /GameData/JSI/Agencies/JSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/Agencies/JSI.png -------------------------------------------------------------------------------- /GameData/JSI/Agencies/JSI_scaled.truecolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/Agencies/JSI_scaled.truecolor -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/MFD40x20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/MFD40x20.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/PlaneHUD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/PlaneHUD.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/graphset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/graphset.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p0_home40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p0_home40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p0_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p0_test.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p1_landing40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p1_landing40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit_graphical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit_graphical.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p3_target40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p3_target40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p4_shipinfo40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p4_shipinfo40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p5_crew40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p5_crew40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p6_resources40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p6_resources40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/pa_HUDPFD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/pa_HUDPFD.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/pa_PFD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/pa_PFD.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/pb_graphs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/pb_graphs.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/DE_mk1pod_IVA.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/DE_mk1pod_IVA.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/kp0110-pod-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/kp0110-pod-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/kp0110-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/kp0110-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/crew-cabin-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/crew-cabin-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/cupola-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/cupola-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/cupola-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/cupola-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-patch.nocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-patch.nocfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-remade-internal.nocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-remade-internal.nocfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1lander-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1lander-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1landercan-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1landercan-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2-spp-cockpits.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2-spp-cockpits.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk3cockpit-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk3cockpit-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/AviationCockpits.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/AviationCockpits.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/B9Aerospace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/B9Aerospace.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/DSEV.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/DSEV.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/DeepFreeze.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/DeepFreeze.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/Endurance.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/Endurance.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/Heisenberg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/Heisenberg.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/Hullcam.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/Hullcam.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/NMB.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/NMB.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/OPT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/OPT.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/SSPX.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/SSPX.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/ThrustReversers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/ThrustReversers.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Compatibility/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Compatibility/modules.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/heading.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/heading.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/hud-overlay.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/hud-overlay.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/ladder.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/ladder.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/leftscale.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/leftscale.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/model.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/planeHUDdiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/planeHUDdiffuse.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/rightscale.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/rightscale.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/screen.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Diffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Diffuse.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Emissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Emissive.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/model.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen-emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen-emissive.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/HDG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/HDG.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall000.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/StaticMask.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/StaticMask.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/baseFont.truecolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Fonts/baseFont.truecolor -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/extraFont1.truecolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Fonts/extraFont1.truecolor -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/fontDefinition.txt: -------------------------------------------------------------------------------- 1 | !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Δ☊¡¢£¤¥¦§¨©ª«¬☋®¯°±²³´µ¶·¸¹º»¼½¾¿ -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/hudfont.truecolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Fonts/hudfont.truecolor -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/ExternalCameraDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/ExternalCameraDiffuse.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera-v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera-v2.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera.restockwhitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera.restockwhitelist -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/ASET/JSIMainCompUnit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/ASET/JSIMainCompUnit.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandle.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandle.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandleDiffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandleDiffuse.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/eva-hatch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/eva-hatch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model000.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model001.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model001.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/prop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/prop.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLock.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLock.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLockDiffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLockDiffuse.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/eva-hatch-with-model.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/eva-hatch-with-model.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate000.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/prop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/prop.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/CubeCollider.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/CubeCollider.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/eva-hatch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/eva-hatch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/ActionGroupLabelledButtons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/ActionGroupLabelledButtons.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/AxisIndicator.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/AxisIndicator.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/Blinkenlichten.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/Blinkenlichten.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/JSISwitchable.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/JSISwitchable.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SASModeButtons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SASModeButtons.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SquareButtons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SquareButtons.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/TrimmerKnobs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/TrimmerKnobs.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchIcons.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchIcons.tga -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchWCover.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchWCover.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/Switch_w_cover_Diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/Switch_w_cover_Diff.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/mechSwitch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/mechSwitch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Sounds/buttonbeep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Sounds/buttonbeep.ogg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/bg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/bg01.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/graphgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/graphgrid.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/noscansat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/noscansat.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/nosignal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/nosignal.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/scaleLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/scaleLabels.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/scalebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/scalebar.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Patches/squad-pitch-bounds.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Patches/squad-pitch-bounds.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/digital-7-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/digital-7-readme.txt -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/repetition-scrolling-ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/repetition-scrolling-ReadMe.txt -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/reduce-iva-cpu-usage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/reduce-iva-cpu-usage.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/rpm-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/rpm-config.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/PropBatching.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/PropBatching.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/RasterPropMonitor.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/RasterPropMonitor.version -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/RasterPropMonitor.version.versiontemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/RasterPropMonitor.version.versiontemplate -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/rasterpropmonitor-font.assetbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/rasterpropmonitor-font.assetbundle -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/rasterpropmonitor-shaders.assetbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/rasterpropmonitor-shaders.assetbundle -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MechJebRPM/MechJebRPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/MechJebRPM/MechJebRPM.cs -------------------------------------------------------------------------------- /MechJebRPM/MechJebRPM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/MechJebRPM/MechJebRPM.csproj -------------------------------------------------------------------------------- /MechJebRPM/MechJebRPMButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/MechJebRPM/MechJebRPMButtons.cs -------------------------------------------------------------------------------- /MechJebRPM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/MechJebRPM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/README.md -------------------------------------------------------------------------------- /RasterPropMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor.sln -------------------------------------------------------------------------------- /RasterPropMonitor/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/.editorconfig -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/InternalCameraTargetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/InternalCameraTargetHelper.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIActionGroupSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIActionGroupSwitch.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSICallbackAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSICallbackAnimator.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIExternalCameraSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIExternalCameraSelector.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIFlashModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIFlashModule.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIInternalBackgroundNoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIInternalBackgroundNoise.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIInternalEVAHatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIInternalEVAHatch.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIInternalFlagDecal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIInternalFlagDecal.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSILabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSILabel.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSINavBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSINavBall.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSINumericInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSINumericInput.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIPropIDFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIPropIDFinder.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIPropTextureShift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIPropTextureShift.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIRadar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIRadar.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSISelectivelyVisibleProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSISelectivelyVisibleProp.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSISetInternalCameraFOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSISetInternalCameraFOV.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSISwitchableVariableLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSISwitchableVariableLabel.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIThrustReverser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIThrustReverser.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIVariableAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIVariableAnimator.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIVariableLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIVariableLabel.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/PropBatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/PropBatcher.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/AeroExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/AeroExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/ButtonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/ButtonHandler.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/CelestialBodyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/CelestialBodyExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/ConfigNodeHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/ConfigNodeHolder.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/CustomVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/CustomVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/DefaultableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/DefaultableDictionary.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/DynamicMethodDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/DynamicMethodDelegateFactory.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/FlyingCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/FlyingCamera.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/IJSIModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/IJSIModule.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/JSITextMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/JSITextMesh.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/JSIVesselRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/JSIVesselRecovery.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MappedVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MappedVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MathExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MathVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MathVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MonitorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MonitorPage.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/OrbitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/OrbitExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/PersistentVariableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/PersistentVariableCollection.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/Protractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/Protractor.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMCEvaluators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMCEvaluators.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMCPersistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMCPersistence.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMCTriggeredEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMCTriggeredEvent.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMGlobals.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMShaderLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMShaderLoader.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVCEvaluators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVCEvaluators.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVCPerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVCPerModule.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVesselComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVesselComputer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RasterPropMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RasterPropMonitor.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RasterPropMonitorComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RasterPropMonitorComputer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/ResourceDataStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/ResourceDataStorage.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/SIFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/SIFormatter.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/SelectVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/SelectVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/StringProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/StringProcessor.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/TextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/TextMenu.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/TextRenderer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/UtilityFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/UtilityFunctions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/VariableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/VariableCollection.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/VariableHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/VariableHandler.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/VariableOrNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/VariableOrNumber.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/VisibilityEnabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Core/VisibilityEnabler.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIChatterer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIChatterer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIEngine.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIFAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIFAR.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIFlightLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIFlightLog.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIGraphingBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIGraphingBackground.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIHeadsUpDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIHeadsUpDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIInternalRPMButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIInternalRPMButtons.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIKAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIKAC.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIMechJeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIMechJeb.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIOdometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIOdometer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIOrbitDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIOrbitDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIParachute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIParachute.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIPilotAssistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIPilotAssistant.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIPrimaryFlightDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIPrimaryFlightDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSISASMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSISASMenu.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIScienceDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIScienceDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSISteerableCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSISteerableCamera.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSITargetMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSITargetMenu.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIVariableGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIVariableGraph.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIVariablePageTextSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIVariablePageTextSwitcher.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/KACWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/KACWrapper.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/MechJebRPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/MechJebRPM.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RasterPropMonitor/RasterPropMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/RasterPropMonitor.csproj -------------------------------------------------------------------------------- /RasterPropMonitor/RasterPropMonitor.version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/RasterPropMonitor.version.props -------------------------------------------------------------------------------- /RasterPropMonitor/RasterPropMonitor.version.props.versiontemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/RasterPropMonitor/RasterPropMonitor.version.props.versiontemplate -------------------------------------------------------------------------------- /SCANsatRPM/JSISCANsatRPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/SCANsatRPM/JSISCANsatRPM.cs -------------------------------------------------------------------------------- /SCANsatRPM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/SCANsatRPM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SCANsatRPM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/SCANsatRPM/README.md -------------------------------------------------------------------------------- /SCANsatRPM/SCANsatRPM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/SCANsatRPM/SCANsatRPM.csproj -------------------------------------------------------------------------------- /Shaders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/.gitignore -------------------------------------------------------------------------------- /Shaders/Assets/Editor/AssetBundleCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Editor/AssetBundleCompiler.cs -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-CroppedDisplayShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-CroppedDisplayShader.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-DisplayShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-DisplayShader.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-FontShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-FontShader.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-JSILabel.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-JSILabel.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-blur.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-blur.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-grayscale.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-grayscale.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-greenscale.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-greenscale.shader -------------------------------------------------------------------------------- /Shaders/Assets/Shaders/RPM-noise.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Assets/Shaders/RPM-noise.shader -------------------------------------------------------------------------------- /Shaders/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Packages/manifest.json -------------------------------------------------------------------------------- /Shaders/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/Packages/packages-lock.json -------------------------------------------------------------------------------- /Shaders/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Shaders/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Shaders/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstPersonKSP/RasterPropMonitor/HEAD/Shaders/ProjectSettings/XRSettings.asset --------------------------------------------------------------------------------