├── .gitattributes ├── .gitignore ├── .gitmodules ├── Assets ├── .gitignore ├── DefaultSkin.cfg ├── Makefile ├── ui_background.svg ├── ui_button.svg ├── ui_checkmark.svg ├── ui_dropdown.svg ├── ui_leftturn.svg ├── ui_rightturn.svg ├── ui_tabdesel.svg ├── ui_tabempty.svg ├── ui_tabsel.svg ├── ui_toggle_off.svg └── ui_toggle_on.svg ├── Docs └── KSC Materials.xlsx ├── GameData ├── CustomPreLaunchChecks │ ├── CustomPreLaunchChecks.dll │ └── CustomPreLaunchChecks.version └── KerbalKonstructs │ ├── Assets │ ├── ANYMapIcon.png │ ├── BaseManagerIcon.png │ ├── Colors │ │ └── legacyGrassColors.png │ ├── CommunityTextures │ │ ├── Blast_01_Damonvv.dds │ │ ├── Blast_02_Damonvv.dds │ │ ├── Containers_Damonvv.dds │ │ ├── Containers_Damonvv_NRM.dds │ │ └── DrainLaunchpad.dds │ ├── DefaultSiteLogo.png │ ├── KSCLaunchpad.png │ ├── KSCRunway.png │ ├── SiteToolbarIcon.png │ ├── Smoke │ │ └── KKPadSmoke1 │ │ │ ├── KKPadSmoke1.cfg │ │ │ ├── cloudfast.mu │ │ │ ├── cloudslow.mu │ │ │ ├── ember1.dds │ │ │ ├── embers.mu │ │ │ ├── furnace.mu │ │ │ ├── smoke2.dds │ │ │ └── smoke5.dds │ ├── TrackingMapIcon.png │ ├── VABMapIcon.png │ ├── banner.png │ ├── billeted.png │ ├── boatlaunchIcon.png │ ├── cancelsearch.png │ ├── closedlaunchsite.png │ ├── copypos.png │ ├── cubes.png │ ├── focuson.png │ ├── foldin.png │ ├── foldout.png │ ├── horizontalsep.png │ ├── horizontalsep2.png │ ├── horizontalsep3.png │ ├── isFavourite.png │ ├── kscHelipadIcon.png │ ├── kscRunwayIcon.png │ ├── kscadmin.png │ ├── kscadminister.png │ ├── kscassembly.png │ ├── kscastro.png │ ├── ksccommand.png │ ├── ksccontrol.png │ ├── kschangar.png │ ├── ksclabs.png │ ├── ksclaunch.png │ ├── kscpad.png │ ├── kscquarters.png │ ├── kscrnd.png │ ├── kscrun.png │ ├── kscsph.png │ ├── ksctrack.png │ ├── ksctracking.png │ ├── kscvab.png │ ├── kscway.png │ ├── leftoff.png │ ├── lefton.png │ ├── lgbottom.png │ ├── lgmiddle.png │ ├── lgtop.png │ ├── littleclose.png │ ├── makefavourite.png │ ├── mapButtonHover.png │ ├── mapButtonNormal.png │ ├── mapClosedBasesOff.png │ ├── mapClosedBasesOn.png │ ├── mapDownlinksOff.png │ ├── mapDownlinksOn.png │ ├── mapFavouritesOff.png │ ├── mapFavouritesOn.png │ ├── mapGroundCommsOff.png │ ├── mapGroundCommsOn.png │ ├── mapHelipadsOff.png │ ├── mapHelipadsOn.png │ ├── mapHideOff.png │ ├── mapHideOn.png │ ├── mapLaunchpadsOff.png │ ├── mapLaunchpadsOn.png │ ├── mapOpenBasesOff.png │ ├── mapOpenBasesOn.png │ ├── mapOtherOff.png │ ├── mapOtherOn.png │ ├── mapRadarOff.png │ ├── mapRadarOn.png │ ├── mapRunwaysOff.png │ ├── mapRunwaysOn.png │ ├── mapTrackingOff.png │ ├── mapTrackingOn.png │ ├── mapUplinksOff.png │ ├── mapUplinksOn.png │ ├── mapWaterOff.png │ ├── mapWaterOn.png │ ├── openedlaunchsite.png │ ├── pastepos.png │ ├── radarcover.png │ ├── recoveryBase.png │ ├── rightoff.png │ ├── righton.png │ ├── search.png │ ├── setaslaunchsite.png │ ├── settingscross.png │ ├── settingstick.png │ ├── siteclosed.png │ ├── siteopen.png │ ├── snapto.png │ ├── terrain.png │ ├── titlebaricon.png │ ├── touchdownL.png │ ├── touchdownR.png │ ├── unbilleted.png │ ├── verticalsep.png │ ├── world.png │ ├── xpgained.png │ └── xpungained.png │ ├── ConfigPresets │ ├── 1_KerbinColor2.cfg │ ├── 1_KerbinPresetsColor.cfg │ ├── 2_OtherPlanetsColor.cfg │ ├── 2_OtherPlanetsColor2.cfg │ ├── BlendMasks.cfg │ └── Textures.cfg │ ├── ExportedInstances │ └── blank.txt │ ├── Flags │ └── Kerbal Konstructs.png │ ├── FreeStatics │ ├── KKflagDemo │ │ ├── AutoGrasDemo.cfg │ │ ├── KKFlagDemoBboard.png │ │ ├── KKflagDemo.cfg │ │ ├── KKflagDemo.mu │ │ └── TextureDemo.cfg │ ├── RunwayMarkings-LICENSE.txt │ ├── RunwayMarkings │ │ ├── AimPoint.png │ │ ├── Displacement.png │ │ ├── Fixed1500.png │ │ ├── Fixed500.png │ │ ├── Threshold6.png │ │ ├── Threshold8.png │ │ ├── aimpoint.cfg │ │ ├── aimpoint.mu │ │ ├── displacement.cfg │ │ ├── displacement.mu │ │ ├── fixed1500.cfg │ │ ├── fixed1500.mu │ │ ├── fixed500.cfg │ │ ├── fixed500.mu │ │ ├── kourseXX.cfg │ │ ├── kourseXX.mu │ │ ├── runway_symbols.png │ │ ├── threshold6.cfg │ │ ├── threshold6.mu │ │ ├── threshold8.cfg │ │ └── threshold8.mu │ ├── SoundCube │ │ ├── SoundCube.cfg │ │ └── SoundCube.mu │ ├── UniversalSpawnPoint │ │ ├── UniversalSpawnPoint.cfg │ │ └── UniversalSpawnPoint.mu │ └── WaterSurfaces │ │ ├── WaterSurfaceRound.cfg │ │ ├── WaterSurfaceRound.fbx │ │ ├── WaterSurfaceRound.mu │ │ ├── WaterSurfaceSquare.cfg │ │ ├── WaterSurfaceSquare.fbx │ │ └── WaterSurfaceSquare.mu │ ├── KerbalKonstructs.dll │ ├── KerbalKonstructs.dll.CodeAnalysisLog.xml │ ├── KerbalKonstructs.dll.lastcodeanalysissucceeded │ ├── KerbalKonstructs.version │ ├── Licences.txt │ ├── MapDecalMaps │ ├── AllBlack.cfg │ ├── AllBlack.png │ ├── CircleSlope.cfg │ ├── CircleSlope.png │ ├── HoleDecal.cfg │ ├── HoleDecal.png │ ├── Lava.cfg │ ├── Lava.png │ ├── SquarePlateauSloped.cfg │ ├── SquarePlateauSloped.png │ ├── SquareSlope.cfg │ ├── SquareSlope.png │ ├── Test.cfg │ ├── Test.png │ ├── diagonalSlope.cfg │ └── diagonalSlope.png │ ├── PluginData │ └── KerbalKonstructs │ │ └── KerbalKonstructs.cfg │ └── Shaders │ ├── kkshaders.linux │ ├── kkshaders.osx │ └── kkshaders.windows ├── KerbalKonstructs.sln ├── README.md ├── Unity ├── Editor │ └── CreateBundles.cs └── Shaders │ ├── Diffuse_Multiply_Random_Normal.shader │ ├── Ground_Multi_NoUV_Normal.shader │ ├── KSP-include.cginc │ ├── NormalFromTex.cginc │ ├── NormalFromTexture.shader │ ├── TileRandom2-include.cginc │ └── old │ ├── Ground_Multi_NoUV.shader │ └── TileRandom-include.cginc ├── create_zip.sh └── src ├── Addons ├── Addons.cs ├── NavUtils │ └── ILSConfig.cs ├── RemoteTech │ └── RemoteTechAddon.cs ├── SDTest.cs └── StageRecovery │ ├── StageRecovery.cs │ └── StageRecoveryWrapper.cs ├── Core ├── Config │ ├── ConfigParser.cs │ ├── ConfigUtil.cs │ └── KKCustomParameters.cs ├── KKMath.cs ├── LaunchSites │ ├── LaunchSite.cs │ ├── LaunchSiteChecks.cs │ ├── LaunchSiteManager.cs │ └── LaunchSiteParser.cs ├── Log.cs ├── MapDecals │ ├── DecalsDatabase.cs │ ├── MapDecalInstance.cs │ ├── MapDecalUtils.cs │ └── MapDecalsMap.cs ├── SpaceCenters │ ├── CustomSpaceCenter.cs │ ├── ScExtention.cs │ └── SpaceCenterManager.cs ├── SquadStatics.cs ├── StaticGroup │ ├── BuiltinCenters.cs │ └── GroupCenter.cs ├── StaticModels │ ├── ModelVariant.cs │ └── StaticModel.cs └── StaticObjects │ ├── InstanceUtil.cs │ ├── StaticDatabase.cs │ ├── StaticInstance.cs │ ├── StaticModule.cs │ └── StaticModules │ ├── AdvTextures │ └── AdvTextures.cs │ ├── AnimateOnSunRise │ ├── AnimateOnSunRise.cs │ ├── AnimateOnSunRiseOld.cs │ └── OnSunRiseMaster.cs │ ├── AnimateOnTrigger │ └── AnimateOnTrigger.cs │ ├── AudioPlayer │ └── AudioPlayer.cs │ ├── AutoKourse │ └── AutoKourse.cs │ ├── CallBack │ ├── KKCallBack.cs │ └── KKCallBackWorker.cs │ ├── Compat │ └── AnimateOnClick.cs │ ├── Destructable │ └── Destructable.cs │ ├── DishAnimate │ └── DishAnimate.cs │ ├── FlagDecal │ └── FlagDecal.cs │ ├── GrassColor │ ├── GrasColor.cs │ ├── GrassColor2.cs │ ├── GrassColorUtils.cs │ └── TexturePreset.cs │ ├── OnClick │ ├── AnimateOnClick.cs │ └── GUIOnClick.cs │ ├── PadSmoke │ └── PadSmoke.cs │ ├── RunwayPapi │ └── RunwayPapi.cs │ ├── TileTextures │ └── TileTextures.cs │ └── Water │ └── WaterSurface.cs ├── Editor ├── GroupEditor │ ├── GroupEditor.cs │ ├── GroupItem.cs │ ├── GroupItemView.cs │ ├── GroupSelectorUI.cs │ └── GroupView.cs ├── InstanceEditor │ ├── EditorGUI.cs │ ├── FacilityEditor.cs │ ├── GrassColorPresetUI.cs │ ├── GrassColorPresetUI2.cs │ ├── GrassColorUI.cs │ ├── InstanceItem.cs │ ├── InstanceItemView.cs │ ├── InstanceView.cs │ ├── LaunchSiteEditor.cs │ └── VariantSelector.cs ├── KKEditorLogic.cs ├── MapDecalEditor │ ├── MapDecalEditor.cs │ ├── MapDecalItem.cs │ ├── MapDecalItemView.cs │ └── MapDecalView.cs ├── ModelInfo.cs ├── ModelItem.cs ├── ModelItemView.cs ├── Shared │ ├── DrawObject.cs │ ├── DrawTools.cs │ ├── EditorGizmo.cs │ └── VectorRenderer.cs ├── SpawnView.cs └── StaticsEditorGUI.cs ├── ExternalAPI ├── API.cs └── extLaunchSiteManager.cs ├── Facilities ├── Barracks │ └── Barracks.cs ├── Business │ └── Business.cs ├── FacilityManager.cs ├── FuelTanks │ └── FuelTanks.cs ├── GroundStation │ ├── GroundStation.cs │ └── TrackingStationGUI.cs ├── Hangar │ ├── Hangar.cs │ ├── HangarGUI.cs │ └── HangarKSCGUI.cs ├── IBarracks.cs ├── IProduction.cs ├── KKFacility.cs ├── KKFacilitySelector.cs ├── LandingGuide │ └── LandingGuideClasses.cs ├── Merchant │ ├── Merchant.cs │ ├── MerchantGUI.cs │ ├── MerchantItem.cs │ └── MerchantItemView.cs ├── ProductionGUI.cs ├── RecoveryBase │ └── RecoveryBase.cs ├── Research │ └── Research.cs ├── StaffGUI.cs ├── StaffItem.cs ├── StaffItemView.cs └── Storage │ ├── Storage.cs │ ├── StorageGUI.cs │ ├── StorageItem.cs │ └── StorageItemView.cs ├── KerbalKonstructs.cs ├── KerbalKonstructs.csproj ├── KodeUI ├── Makefile ├── Modules ├── Career │ ├── CareerEditor.cs │ ├── CareerObjects.cs │ ├── CareerScenario.cs │ ├── CareerState.cs │ └── CareerUtils.cs ├── MapIcons │ ├── MapIcon.cs │ ├── MapIconDraw.cs │ ├── MapIconManager.cs │ └── MapIconSelector.cs └── RemoteNet │ ├── ConnectionManager.cs │ └── KKCommNetHome.cs ├── Properties └── AssemblyInfo.cs ├── ResourceManager ├── IResourceContainer.cs ├── PartResourceContainer.cs ├── ResourceInfo.cs ├── ResourceManager.cs ├── ResourceSet.cs ├── ResourceSetContainer.cs └── ResourceXferControl.cs ├── UI ├── AirRacing.cs ├── BaseBossFlight.cs ├── BaseManager.cs ├── FacilityItem.cs ├── FacilityItemView.cs ├── FieldToggle.cs ├── IconToggle.cs ├── IncrementSize.cs ├── InfoLine.cs ├── InputLine.cs ├── KKWindow.cs ├── LandingGuide.cs ├── LaunchsiteCategoryIcon.cs ├── LaunchsiteFilter.cs ├── LaunchsiteItem.cs ├── LaunchsiteItemView.cs ├── LaunchsiteSelectorGUI.cs ├── Layout.cs ├── ListView.cs ├── Localization.cs ├── MiniToggle.cs ├── NavGuidanceSystem.cs ├── PositionButtons.cs ├── PositionEdit.cs ├── PositionLine.cs ├── ReferenceSystem.cs ├── StackSize.cs ├── StateButton.cs ├── ToggleText.cs ├── ToolbarController.cs ├── TransferButtons.cs ├── UIMain.cs ├── ValueAdjuster.cs ├── VectorDisplay.cs └── WindowManager.cs ├── UI2 ├── Editor │ ├── EditorModeSelector.cs │ ├── Group │ │ └── GroupEditorToolbar.cs │ ├── Instance │ │ ├── ColorSelector.cs │ │ ├── GrassEditor.cs │ │ ├── InstanceEditorToolbar.cs │ │ └── ModelList.cs │ └── Terrain │ │ └── TerrainEditorToolbar.cs ├── KKStyle.cs ├── KKWindow2.cs ├── KSCManager.cs └── WindowManager2.cs └── Utilities ├── CameraController.cs ├── ClassExtentions.cs ├── DebugDrawer.cs ├── Enum.cs ├── GrasColorCam.cs ├── KKGraphics.cs ├── MiscUtils.cs └── Zip ├── Crc32Helper.Managed.cs ├── PositionPreservingWriteOnlyStreamWrapper.cs ├── ZipArchive.cs ├── ZipArchiveEntry.Unity.cs ├── ZipArchiveEntry.cs ├── ZipArchiveMode.cs ├── ZipBlocks.cs ├── ZipCustomStreams.cs ├── ZipFile.cs ├── ZipFileExtensions.cs ├── ZipHelper.cs └── ZipVersion.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /Assets/DefaultSkin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/DefaultSkin.cfg -------------------------------------------------------------------------------- /Assets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/Makefile -------------------------------------------------------------------------------- /Assets/ui_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_background.svg -------------------------------------------------------------------------------- /Assets/ui_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_button.svg -------------------------------------------------------------------------------- /Assets/ui_checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_checkmark.svg -------------------------------------------------------------------------------- /Assets/ui_dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_dropdown.svg -------------------------------------------------------------------------------- /Assets/ui_leftturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_leftturn.svg -------------------------------------------------------------------------------- /Assets/ui_rightturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_rightturn.svg -------------------------------------------------------------------------------- /Assets/ui_tabdesel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_tabdesel.svg -------------------------------------------------------------------------------- /Assets/ui_tabempty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_tabempty.svg -------------------------------------------------------------------------------- /Assets/ui_tabsel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_tabsel.svg -------------------------------------------------------------------------------- /Assets/ui_toggle_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_toggle_off.svg -------------------------------------------------------------------------------- /Assets/ui_toggle_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Assets/ui_toggle_on.svg -------------------------------------------------------------------------------- /Docs/KSC Materials.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Docs/KSC Materials.xlsx -------------------------------------------------------------------------------- /GameData/CustomPreLaunchChecks/CustomPreLaunchChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/CustomPreLaunchChecks/CustomPreLaunchChecks.dll -------------------------------------------------------------------------------- /GameData/CustomPreLaunchChecks/CustomPreLaunchChecks.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/CustomPreLaunchChecks/CustomPreLaunchChecks.version -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ANYMapIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ANYMapIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/BaseManagerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/BaseManagerIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Colors/legacyGrassColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Colors/legacyGrassColors.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/CommunityTextures/Blast_01_Damonvv.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/CommunityTextures/Blast_01_Damonvv.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/CommunityTextures/Blast_02_Damonvv.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/CommunityTextures/Blast_02_Damonvv.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/CommunityTextures/Containers_Damonvv.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/CommunityTextures/Containers_Damonvv.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/CommunityTextures/Containers_Damonvv_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/CommunityTextures/Containers_Damonvv_NRM.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/CommunityTextures/DrainLaunchpad.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/CommunityTextures/DrainLaunchpad.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/DefaultSiteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/DefaultSiteLogo.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/KSCLaunchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/KSCLaunchpad.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/KSCRunway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/KSCRunway.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/SiteToolbarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/SiteToolbarIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/KKPadSmoke1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/KKPadSmoke1.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/cloudfast.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/cloudfast.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/cloudslow.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/cloudslow.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/ember1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/ember1.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/embers.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/embers.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/furnace.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/furnace.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/smoke2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/smoke2.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/smoke5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/Smoke/KKPadSmoke1/smoke5.dds -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/TrackingMapIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/TrackingMapIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/VABMapIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/VABMapIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/banner.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/billeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/billeted.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/boatlaunchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/boatlaunchIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/cancelsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/cancelsearch.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/closedlaunchsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/closedlaunchsite.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/copypos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/copypos.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/cubes.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/focuson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/focuson.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/foldin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/foldin.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/foldout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/foldout.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/horizontalsep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/horizontalsep.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/horizontalsep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/horizontalsep2.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/horizontalsep3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/horizontalsep3.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/isFavourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/isFavourite.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscHelipadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscHelipadIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscRunwayIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscRunwayIcon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscadmin.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscadminister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscadminister.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscassembly.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscastro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscastro.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ksccommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ksccommand.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ksccontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ksccontrol.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kschangar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kschangar.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ksclabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ksclabs.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ksclaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ksclaunch.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscpad.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscquarters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscquarters.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscrnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscrnd.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscrun.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscsph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscsph.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ksctrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ksctrack.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/ksctracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/ksctracking.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscvab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscvab.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/kscway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/kscway.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/leftoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/leftoff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/lefton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/lefton.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/lgbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/lgbottom.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/lgmiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/lgmiddle.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/lgtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/lgtop.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/littleclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/littleclose.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/makefavourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/makefavourite.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapButtonHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapButtonHover.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapButtonNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapButtonNormal.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapClosedBasesOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapClosedBasesOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapClosedBasesOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapClosedBasesOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapDownlinksOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapDownlinksOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapDownlinksOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapDownlinksOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapFavouritesOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapFavouritesOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapFavouritesOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapFavouritesOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapGroundCommsOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapGroundCommsOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapGroundCommsOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapGroundCommsOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapHelipadsOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapHelipadsOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapHelipadsOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapHelipadsOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapHideOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapHideOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapHideOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapHideOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapLaunchpadsOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapLaunchpadsOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapLaunchpadsOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapLaunchpadsOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapOpenBasesOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapOpenBasesOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapOpenBasesOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapOpenBasesOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapOtherOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapOtherOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapOtherOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapOtherOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapRadarOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapRadarOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapRadarOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapRadarOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapRunwaysOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapRunwaysOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapRunwaysOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapRunwaysOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapTrackingOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapTrackingOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapTrackingOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapTrackingOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapUplinksOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapUplinksOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapUplinksOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapUplinksOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapWaterOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapWaterOff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/mapWaterOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/mapWaterOn.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/openedlaunchsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/openedlaunchsite.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/pastepos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/pastepos.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/radarcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/radarcover.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/recoveryBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/recoveryBase.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/rightoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/rightoff.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/righton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/righton.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/search.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/setaslaunchsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/setaslaunchsite.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/settingscross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/settingscross.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/settingstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/settingstick.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/siteclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/siteclosed.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/siteopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/siteopen.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/snapto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/snapto.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/terrain.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/titlebaricon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/titlebaricon.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/touchdownL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/touchdownL.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/touchdownR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/touchdownR.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/unbilleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/unbilleted.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/verticalsep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/verticalsep.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/world.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/xpgained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/xpgained.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Assets/xpungained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Assets/xpungained.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ConfigPresets/1_KerbinColor2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/ConfigPresets/1_KerbinColor2.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ConfigPresets/1_KerbinPresetsColor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/ConfigPresets/1_KerbinPresetsColor.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ConfigPresets/2_OtherPlanetsColor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/ConfigPresets/2_OtherPlanetsColor.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ConfigPresets/2_OtherPlanetsColor2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/ConfigPresets/2_OtherPlanetsColor2.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ConfigPresets/BlendMasks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/ConfigPresets/BlendMasks.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ConfigPresets/Textures.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/ConfigPresets/Textures.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/ExportedInstances/blank.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Flags/Kerbal Konstructs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Flags/Kerbal Konstructs.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/KKflagDemo/AutoGrasDemo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/KKflagDemo/AutoGrasDemo.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/KKflagDemo/KKFlagDemoBboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/KKflagDemo/KKFlagDemoBboard.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/KKflagDemo/KKflagDemo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/KKflagDemo/KKflagDemo.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/KKflagDemo/KKflagDemo.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/KKflagDemo/KKflagDemo.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/KKflagDemo/TextureDemo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/KKflagDemo/TextureDemo.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings-LICENSE.txt -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/AimPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/AimPoint.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Displacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Displacement.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Fixed1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Fixed1500.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Fixed500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Fixed500.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Threshold6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Threshold6.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Threshold8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/Threshold8.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/aimpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/aimpoint.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/aimpoint.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/aimpoint.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/displacement.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/displacement.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/displacement.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/displacement.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed1500.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed1500.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed1500.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed1500.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed500.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed500.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed500.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/fixed500.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/kourseXX.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/kourseXX.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/kourseXX.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/kourseXX.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/runway_symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/runway_symbols.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold6.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold6.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold6.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold8.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold8.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/RunwayMarkings/threshold8.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/SoundCube/SoundCube.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/SoundCube/SoundCube.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/SoundCube/SoundCube.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/SoundCube/SoundCube.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/UniversalSpawnPoint/UniversalSpawnPoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/UniversalSpawnPoint/UniversalSpawnPoint.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/UniversalSpawnPoint/UniversalSpawnPoint.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/UniversalSpawnPoint/UniversalSpawnPoint.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceRound.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceRound.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceRound.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceRound.fbx -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceRound.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceRound.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceSquare.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceSquare.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceSquare.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceSquare.fbx -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceSquare.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/FreeStatics/WaterSurfaces/WaterSurfaceSquare.mu -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/KerbalKonstructs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/KerbalKonstructs.dll -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/KerbalKonstructs.dll.CodeAnalysisLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/KerbalKonstructs.dll.CodeAnalysisLog.xml -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/KerbalKonstructs.dll.lastcodeanalysissucceeded: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/KerbalKonstructs.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/KerbalKonstructs.version -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Licences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Licences.txt -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/AllBlack.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/AllBlack.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/AllBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/AllBlack.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/CircleSlope.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/CircleSlope.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/CircleSlope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/CircleSlope.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/HoleDecal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/HoleDecal.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/HoleDecal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/HoleDecal.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/Lava.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/Lava.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/Lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/Lava.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/SquarePlateauSloped.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/SquarePlateauSloped.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/SquarePlateauSloped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/SquarePlateauSloped.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/SquareSlope.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/SquareSlope.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/SquareSlope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/SquareSlope.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/Test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/Test.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/Test.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/diagonalSlope.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/diagonalSlope.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/MapDecalMaps/diagonalSlope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/MapDecalMaps/diagonalSlope.png -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/PluginData/KerbalKonstructs/KerbalKonstructs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/PluginData/KerbalKonstructs/KerbalKonstructs.cfg -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Shaders/kkshaders.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Shaders/kkshaders.linux -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Shaders/kkshaders.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Shaders/kkshaders.osx -------------------------------------------------------------------------------- /GameData/KerbalKonstructs/Shaders/kkshaders.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/GameData/KerbalKonstructs/Shaders/kkshaders.windows -------------------------------------------------------------------------------- /KerbalKonstructs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/KerbalKonstructs.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/README.md -------------------------------------------------------------------------------- /Unity/Editor/CreateBundles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Editor/CreateBundles.cs -------------------------------------------------------------------------------- /Unity/Shaders/Diffuse_Multiply_Random_Normal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/Diffuse_Multiply_Random_Normal.shader -------------------------------------------------------------------------------- /Unity/Shaders/Ground_Multi_NoUV_Normal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/Ground_Multi_NoUV_Normal.shader -------------------------------------------------------------------------------- /Unity/Shaders/KSP-include.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/KSP-include.cginc -------------------------------------------------------------------------------- /Unity/Shaders/NormalFromTex.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/NormalFromTex.cginc -------------------------------------------------------------------------------- /Unity/Shaders/NormalFromTexture.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/NormalFromTexture.shader -------------------------------------------------------------------------------- /Unity/Shaders/TileRandom2-include.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/TileRandom2-include.cginc -------------------------------------------------------------------------------- /Unity/Shaders/old/Ground_Multi_NoUV.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/old/Ground_Multi_NoUV.shader -------------------------------------------------------------------------------- /Unity/Shaders/old/TileRandom-include.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/Unity/Shaders/old/TileRandom-include.cginc -------------------------------------------------------------------------------- /create_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/create_zip.sh -------------------------------------------------------------------------------- /src/Addons/Addons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Addons/Addons.cs -------------------------------------------------------------------------------- /src/Addons/NavUtils/ILSConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Addons/NavUtils/ILSConfig.cs -------------------------------------------------------------------------------- /src/Addons/RemoteTech/RemoteTechAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Addons/RemoteTech/RemoteTechAddon.cs -------------------------------------------------------------------------------- /src/Addons/SDTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Addons/SDTest.cs -------------------------------------------------------------------------------- /src/Addons/StageRecovery/StageRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Addons/StageRecovery/StageRecovery.cs -------------------------------------------------------------------------------- /src/Addons/StageRecovery/StageRecoveryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Addons/StageRecovery/StageRecoveryWrapper.cs -------------------------------------------------------------------------------- /src/Core/Config/ConfigParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/Config/ConfigParser.cs -------------------------------------------------------------------------------- /src/Core/Config/ConfigUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/Config/ConfigUtil.cs -------------------------------------------------------------------------------- /src/Core/Config/KKCustomParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/Config/KKCustomParameters.cs -------------------------------------------------------------------------------- /src/Core/KKMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/KKMath.cs -------------------------------------------------------------------------------- /src/Core/LaunchSites/LaunchSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/LaunchSites/LaunchSite.cs -------------------------------------------------------------------------------- /src/Core/LaunchSites/LaunchSiteChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/LaunchSites/LaunchSiteChecks.cs -------------------------------------------------------------------------------- /src/Core/LaunchSites/LaunchSiteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/LaunchSites/LaunchSiteManager.cs -------------------------------------------------------------------------------- /src/Core/LaunchSites/LaunchSiteParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/LaunchSites/LaunchSiteParser.cs -------------------------------------------------------------------------------- /src/Core/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/Log.cs -------------------------------------------------------------------------------- /src/Core/MapDecals/DecalsDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/MapDecals/DecalsDatabase.cs -------------------------------------------------------------------------------- /src/Core/MapDecals/MapDecalInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/MapDecals/MapDecalInstance.cs -------------------------------------------------------------------------------- /src/Core/MapDecals/MapDecalUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/MapDecals/MapDecalUtils.cs -------------------------------------------------------------------------------- /src/Core/MapDecals/MapDecalsMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/MapDecals/MapDecalsMap.cs -------------------------------------------------------------------------------- /src/Core/SpaceCenters/CustomSpaceCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/SpaceCenters/CustomSpaceCenter.cs -------------------------------------------------------------------------------- /src/Core/SpaceCenters/ScExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/SpaceCenters/ScExtention.cs -------------------------------------------------------------------------------- /src/Core/SpaceCenters/SpaceCenterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/SpaceCenters/SpaceCenterManager.cs -------------------------------------------------------------------------------- /src/Core/SquadStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/SquadStatics.cs -------------------------------------------------------------------------------- /src/Core/StaticGroup/BuiltinCenters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticGroup/BuiltinCenters.cs -------------------------------------------------------------------------------- /src/Core/StaticGroup/GroupCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticGroup/GroupCenter.cs -------------------------------------------------------------------------------- /src/Core/StaticModels/ModelVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticModels/ModelVariant.cs -------------------------------------------------------------------------------- /src/Core/StaticModels/StaticModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticModels/StaticModel.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/InstanceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/InstanceUtil.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticDatabase.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticInstance.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModule.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AdvTextures/AdvTextures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AdvTextures/AdvTextures.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AnimateOnSunRise/AnimateOnSunRise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AnimateOnSunRise/AnimateOnSunRise.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AnimateOnSunRise/AnimateOnSunRiseOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AnimateOnSunRise/AnimateOnSunRiseOld.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AnimateOnSunRise/OnSunRiseMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AnimateOnSunRise/OnSunRiseMaster.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AnimateOnTrigger/AnimateOnTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AnimateOnTrigger/AnimateOnTrigger.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AudioPlayer/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AudioPlayer/AudioPlayer.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/AutoKourse/AutoKourse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/AutoKourse/AutoKourse.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/CallBack/KKCallBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/CallBack/KKCallBack.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/CallBack/KKCallBackWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/CallBack/KKCallBackWorker.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/Compat/AnimateOnClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/Compat/AnimateOnClick.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/Destructable/Destructable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/Destructable/Destructable.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/DishAnimate/DishAnimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/DishAnimate/DishAnimate.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/FlagDecal/FlagDecal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/FlagDecal/FlagDecal.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/GrassColor/GrasColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/GrassColor/GrasColor.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/GrassColor/GrassColor2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/GrassColor/GrassColor2.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/GrassColor/GrassColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/GrassColor/GrassColorUtils.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/GrassColor/TexturePreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/GrassColor/TexturePreset.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/OnClick/AnimateOnClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/OnClick/AnimateOnClick.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/OnClick/GUIOnClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/OnClick/GUIOnClick.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/PadSmoke/PadSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/PadSmoke/PadSmoke.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/RunwayPapi/RunwayPapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/RunwayPapi/RunwayPapi.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/TileTextures/TileTextures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/TileTextures/TileTextures.cs -------------------------------------------------------------------------------- /src/Core/StaticObjects/StaticModules/Water/WaterSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Core/StaticObjects/StaticModules/Water/WaterSurface.cs -------------------------------------------------------------------------------- /src/Editor/GroupEditor/GroupEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/GroupEditor/GroupEditor.cs -------------------------------------------------------------------------------- /src/Editor/GroupEditor/GroupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/GroupEditor/GroupItem.cs -------------------------------------------------------------------------------- /src/Editor/GroupEditor/GroupItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/GroupEditor/GroupItemView.cs -------------------------------------------------------------------------------- /src/Editor/GroupEditor/GroupSelectorUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/GroupEditor/GroupSelectorUI.cs -------------------------------------------------------------------------------- /src/Editor/GroupEditor/GroupView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/GroupEditor/GroupView.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/EditorGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/EditorGUI.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/FacilityEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/FacilityEditor.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/GrassColorPresetUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/GrassColorPresetUI.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/GrassColorPresetUI2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/GrassColorPresetUI2.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/GrassColorUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/GrassColorUI.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/InstanceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/InstanceItem.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/InstanceItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/InstanceItemView.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/InstanceView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/InstanceView.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/LaunchSiteEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/LaunchSiteEditor.cs -------------------------------------------------------------------------------- /src/Editor/InstanceEditor/VariantSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/InstanceEditor/VariantSelector.cs -------------------------------------------------------------------------------- /src/Editor/KKEditorLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/KKEditorLogic.cs -------------------------------------------------------------------------------- /src/Editor/MapDecalEditor/MapDecalEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/MapDecalEditor/MapDecalEditor.cs -------------------------------------------------------------------------------- /src/Editor/MapDecalEditor/MapDecalItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/MapDecalEditor/MapDecalItem.cs -------------------------------------------------------------------------------- /src/Editor/MapDecalEditor/MapDecalItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/MapDecalEditor/MapDecalItemView.cs -------------------------------------------------------------------------------- /src/Editor/MapDecalEditor/MapDecalView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/MapDecalEditor/MapDecalView.cs -------------------------------------------------------------------------------- /src/Editor/ModelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/ModelInfo.cs -------------------------------------------------------------------------------- /src/Editor/ModelItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/ModelItem.cs -------------------------------------------------------------------------------- /src/Editor/ModelItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/ModelItemView.cs -------------------------------------------------------------------------------- /src/Editor/Shared/DrawObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/Shared/DrawObject.cs -------------------------------------------------------------------------------- /src/Editor/Shared/DrawTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/Shared/DrawTools.cs -------------------------------------------------------------------------------- /src/Editor/Shared/EditorGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/Shared/EditorGizmo.cs -------------------------------------------------------------------------------- /src/Editor/Shared/VectorRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/Shared/VectorRenderer.cs -------------------------------------------------------------------------------- /src/Editor/SpawnView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/SpawnView.cs -------------------------------------------------------------------------------- /src/Editor/StaticsEditorGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Editor/StaticsEditorGUI.cs -------------------------------------------------------------------------------- /src/ExternalAPI/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ExternalAPI/API.cs -------------------------------------------------------------------------------- /src/ExternalAPI/extLaunchSiteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ExternalAPI/extLaunchSiteManager.cs -------------------------------------------------------------------------------- /src/Facilities/Barracks/Barracks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Barracks/Barracks.cs -------------------------------------------------------------------------------- /src/Facilities/Business/Business.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Business/Business.cs -------------------------------------------------------------------------------- /src/Facilities/FacilityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/FacilityManager.cs -------------------------------------------------------------------------------- /src/Facilities/FuelTanks/FuelTanks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/FuelTanks/FuelTanks.cs -------------------------------------------------------------------------------- /src/Facilities/GroundStation/GroundStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/GroundStation/GroundStation.cs -------------------------------------------------------------------------------- /src/Facilities/GroundStation/TrackingStationGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/GroundStation/TrackingStationGUI.cs -------------------------------------------------------------------------------- /src/Facilities/Hangar/Hangar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Hangar/Hangar.cs -------------------------------------------------------------------------------- /src/Facilities/Hangar/HangarGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Hangar/HangarGUI.cs -------------------------------------------------------------------------------- /src/Facilities/Hangar/HangarKSCGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Hangar/HangarKSCGUI.cs -------------------------------------------------------------------------------- /src/Facilities/IBarracks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/IBarracks.cs -------------------------------------------------------------------------------- /src/Facilities/IProduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/IProduction.cs -------------------------------------------------------------------------------- /src/Facilities/KKFacility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/KKFacility.cs -------------------------------------------------------------------------------- /src/Facilities/KKFacilitySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/KKFacilitySelector.cs -------------------------------------------------------------------------------- /src/Facilities/LandingGuide/LandingGuideClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/LandingGuide/LandingGuideClasses.cs -------------------------------------------------------------------------------- /src/Facilities/Merchant/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Merchant/Merchant.cs -------------------------------------------------------------------------------- /src/Facilities/Merchant/MerchantGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Merchant/MerchantGUI.cs -------------------------------------------------------------------------------- /src/Facilities/Merchant/MerchantItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Merchant/MerchantItem.cs -------------------------------------------------------------------------------- /src/Facilities/Merchant/MerchantItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Merchant/MerchantItemView.cs -------------------------------------------------------------------------------- /src/Facilities/ProductionGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/ProductionGUI.cs -------------------------------------------------------------------------------- /src/Facilities/RecoveryBase/RecoveryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/RecoveryBase/RecoveryBase.cs -------------------------------------------------------------------------------- /src/Facilities/Research/Research.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Research/Research.cs -------------------------------------------------------------------------------- /src/Facilities/StaffGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/StaffGUI.cs -------------------------------------------------------------------------------- /src/Facilities/StaffItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/StaffItem.cs -------------------------------------------------------------------------------- /src/Facilities/StaffItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/StaffItemView.cs -------------------------------------------------------------------------------- /src/Facilities/Storage/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Storage/Storage.cs -------------------------------------------------------------------------------- /src/Facilities/Storage/StorageGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Storage/StorageGUI.cs -------------------------------------------------------------------------------- /src/Facilities/Storage/StorageItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Storage/StorageItem.cs -------------------------------------------------------------------------------- /src/Facilities/Storage/StorageItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Facilities/Storage/StorageItemView.cs -------------------------------------------------------------------------------- /src/KerbalKonstructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/KerbalKonstructs.cs -------------------------------------------------------------------------------- /src/KerbalKonstructs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/KerbalKonstructs.csproj -------------------------------------------------------------------------------- /src/KodeUI: -------------------------------------------------------------------------------- 1 | ../KodeUI/KodeUI-Unity/Assets/KodeUI -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Modules/Career/CareerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/Career/CareerEditor.cs -------------------------------------------------------------------------------- /src/Modules/Career/CareerObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/Career/CareerObjects.cs -------------------------------------------------------------------------------- /src/Modules/Career/CareerScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/Career/CareerScenario.cs -------------------------------------------------------------------------------- /src/Modules/Career/CareerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/Career/CareerState.cs -------------------------------------------------------------------------------- /src/Modules/Career/CareerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/Career/CareerUtils.cs -------------------------------------------------------------------------------- /src/Modules/MapIcons/MapIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/MapIcons/MapIcon.cs -------------------------------------------------------------------------------- /src/Modules/MapIcons/MapIconDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/MapIcons/MapIconDraw.cs -------------------------------------------------------------------------------- /src/Modules/MapIcons/MapIconManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/MapIcons/MapIconManager.cs -------------------------------------------------------------------------------- /src/Modules/MapIcons/MapIconSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/MapIcons/MapIconSelector.cs -------------------------------------------------------------------------------- /src/Modules/RemoteNet/ConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/RemoteNet/ConnectionManager.cs -------------------------------------------------------------------------------- /src/Modules/RemoteNet/KKCommNetHome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Modules/RemoteNet/KKCommNetHome.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ResourceManager/IResourceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/IResourceContainer.cs -------------------------------------------------------------------------------- /src/ResourceManager/PartResourceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/PartResourceContainer.cs -------------------------------------------------------------------------------- /src/ResourceManager/ResourceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/ResourceInfo.cs -------------------------------------------------------------------------------- /src/ResourceManager/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/ResourceManager.cs -------------------------------------------------------------------------------- /src/ResourceManager/ResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/ResourceSet.cs -------------------------------------------------------------------------------- /src/ResourceManager/ResourceSetContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/ResourceSetContainer.cs -------------------------------------------------------------------------------- /src/ResourceManager/ResourceXferControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/ResourceManager/ResourceXferControl.cs -------------------------------------------------------------------------------- /src/UI/AirRacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/AirRacing.cs -------------------------------------------------------------------------------- /src/UI/BaseBossFlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/BaseBossFlight.cs -------------------------------------------------------------------------------- /src/UI/BaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/BaseManager.cs -------------------------------------------------------------------------------- /src/UI/FacilityItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/FacilityItem.cs -------------------------------------------------------------------------------- /src/UI/FacilityItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/FacilityItemView.cs -------------------------------------------------------------------------------- /src/UI/FieldToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/FieldToggle.cs -------------------------------------------------------------------------------- /src/UI/IconToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/IconToggle.cs -------------------------------------------------------------------------------- /src/UI/IncrementSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/IncrementSize.cs -------------------------------------------------------------------------------- /src/UI/InfoLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/InfoLine.cs -------------------------------------------------------------------------------- /src/UI/InputLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/InputLine.cs -------------------------------------------------------------------------------- /src/UI/KKWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/KKWindow.cs -------------------------------------------------------------------------------- /src/UI/LandingGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/LandingGuide.cs -------------------------------------------------------------------------------- /src/UI/LaunchsiteCategoryIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/LaunchsiteCategoryIcon.cs -------------------------------------------------------------------------------- /src/UI/LaunchsiteFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/LaunchsiteFilter.cs -------------------------------------------------------------------------------- /src/UI/LaunchsiteItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/LaunchsiteItem.cs -------------------------------------------------------------------------------- /src/UI/LaunchsiteItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/LaunchsiteItemView.cs -------------------------------------------------------------------------------- /src/UI/LaunchsiteSelectorGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/LaunchsiteSelectorGUI.cs -------------------------------------------------------------------------------- /src/UI/Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/Layout.cs -------------------------------------------------------------------------------- /src/UI/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/ListView.cs -------------------------------------------------------------------------------- /src/UI/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/Localization.cs -------------------------------------------------------------------------------- /src/UI/MiniToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/MiniToggle.cs -------------------------------------------------------------------------------- /src/UI/NavGuidanceSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/NavGuidanceSystem.cs -------------------------------------------------------------------------------- /src/UI/PositionButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/PositionButtons.cs -------------------------------------------------------------------------------- /src/UI/PositionEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/PositionEdit.cs -------------------------------------------------------------------------------- /src/UI/PositionLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/PositionLine.cs -------------------------------------------------------------------------------- /src/UI/ReferenceSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/ReferenceSystem.cs -------------------------------------------------------------------------------- /src/UI/StackSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/StackSize.cs -------------------------------------------------------------------------------- /src/UI/StateButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/StateButton.cs -------------------------------------------------------------------------------- /src/UI/ToggleText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/ToggleText.cs -------------------------------------------------------------------------------- /src/UI/ToolbarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/ToolbarController.cs -------------------------------------------------------------------------------- /src/UI/TransferButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/TransferButtons.cs -------------------------------------------------------------------------------- /src/UI/UIMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/UIMain.cs -------------------------------------------------------------------------------- /src/UI/ValueAdjuster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/ValueAdjuster.cs -------------------------------------------------------------------------------- /src/UI/VectorDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/VectorDisplay.cs -------------------------------------------------------------------------------- /src/UI/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI/WindowManager.cs -------------------------------------------------------------------------------- /src/UI2/Editor/EditorModeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/EditorModeSelector.cs -------------------------------------------------------------------------------- /src/UI2/Editor/Group/GroupEditorToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/Group/GroupEditorToolbar.cs -------------------------------------------------------------------------------- /src/UI2/Editor/Instance/ColorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/Instance/ColorSelector.cs -------------------------------------------------------------------------------- /src/UI2/Editor/Instance/GrassEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/Instance/GrassEditor.cs -------------------------------------------------------------------------------- /src/UI2/Editor/Instance/InstanceEditorToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/Instance/InstanceEditorToolbar.cs -------------------------------------------------------------------------------- /src/UI2/Editor/Instance/ModelList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/Instance/ModelList.cs -------------------------------------------------------------------------------- /src/UI2/Editor/Terrain/TerrainEditorToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/Editor/Terrain/TerrainEditorToolbar.cs -------------------------------------------------------------------------------- /src/UI2/KKStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/KKStyle.cs -------------------------------------------------------------------------------- /src/UI2/KKWindow2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/KKWindow2.cs -------------------------------------------------------------------------------- /src/UI2/KSCManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/KSCManager.cs -------------------------------------------------------------------------------- /src/UI2/WindowManager2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/UI2/WindowManager2.cs -------------------------------------------------------------------------------- /src/Utilities/CameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/CameraController.cs -------------------------------------------------------------------------------- /src/Utilities/ClassExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/ClassExtentions.cs -------------------------------------------------------------------------------- /src/Utilities/DebugDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/DebugDrawer.cs -------------------------------------------------------------------------------- /src/Utilities/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Enum.cs -------------------------------------------------------------------------------- /src/Utilities/GrasColorCam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/GrasColorCam.cs -------------------------------------------------------------------------------- /src/Utilities/KKGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/KKGraphics.cs -------------------------------------------------------------------------------- /src/Utilities/MiscUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/MiscUtils.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/Crc32Helper.Managed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/Crc32Helper.Managed.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/PositionPreservingWriteOnlyStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/PositionPreservingWriteOnlyStreamWrapper.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipArchive.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipArchiveEntry.Unity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipArchiveEntry.Unity.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipArchiveEntry.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipArchiveMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipArchiveMode.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipBlocks.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipCustomStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipCustomStreams.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipFile.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipFileExtensions.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipHelper.cs -------------------------------------------------------------------------------- /src/Utilities/Zip/ZipVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GER-Space/Kerbal-Konstructs/HEAD/src/Utilities/Zip/ZipVersion.cs --------------------------------------------------------------------------------