Jump to content

[1.2.*] Camera Focus Changer v1.0.1


zentarul

Recommended Posts

18 hours ago, OldLost said:

Any chance this also can be made to work in the VAB?

It could be done, but like Deimos said, I think the WASD Camera mod gives you even more control in the confines of the VAB.

Stay tuned though, I might just add it as a hidden feature that can be enabled in the config file.

Link to comment
Share on other sites

16 hours ago, Deimos Rast said:

That's not a bad idea actually.

Might I suggest the WASD Camera mod?

I've tried that mod, and for me it interferes too much with the normal camera movement commands. For example, when you go to place a new part and have the part attached to the cursor the camera cannot be moved at all. None of the normal movement commands function. Something simpler would be to have what this mod does, where it just changes the center of view someplace else instead of where it always seems to be in the VAB. Of course, ideally for me would be to have similar view transformations as is standard in the SPH where you can shift the view using alt-mouse (or shift, or whatever it is; I use it so instinctively my fingers do it and I don't really think about it anymore), but that would not be this mod.

Link to comment
Share on other sites

On 5/9/2016 at 9:39 AM, zentarul said:

Thanks for the information @Neutrinovore, I'll try to follow those discussions. Since I am a user of kOS, this is a bug that also affects me personnaly, so I'd very much like to have it fixed. Feel free to poke me if you hear that a fix/work-around has been found.

On 5/11/2016 at 4:35 AM, Dizor said:

As for kOS text fields probably we should not use EventSystem.current.currentSelectedGameObject

I'm not the one who implemented our use of KSP control locks, but that's how kOS attempts to lock out passing characters to another mod.  We set the input lock to everything except targeting:

InputLockManager.SetControlLock(ControlTypes.All & ~ControlTypes.TARGETING, "kOSTerminal");

So if Camera Focus Changer simply looks for a defined lock (anything except Target) before registering the input, it should fix kOS (or any other mod that uses the stock lock system) key presses from passing through to your mod:

if (!InputLockManager.IsLocked(ControlTypes.ALL_SHIP_CONTROLS))
{
    if (Input.GetKeyDown(actionKey))
    {
        // the rest of your code
    }
}

While your at it, if you could add a hook somewhere so that kOS could call a method like "CenterCameraOnPart(Part part)"  then we could interact directly with your mod too!

Link to comment
Share on other sites

  • 3 weeks later...
On 27/7/2016 at 3:44 AM, Trann said:

Possible issue: when typing in a text entry window, click-through happens.  I found the focus changed when naming a flag.  Reproducible.

Yeah, it's been a plague for everything , input are not locked , click through , key pressed.... it is not affecting only this mod, hope the new gui in 1.2 give a more robust way to handle input

Link to comment
Share on other sites

  • 1 month later...

Holla Folks! I am back from inactivity. Lets just say that 1.2 experimentals have woken me up.

I saw that they have now implemented a stock "aim camera" tool, but I still find that my implementation is better. The noobs at squad didn't even include a smooth camera transition! XD (kidding, I love you guys)

But yeah, I will keep maintaining this mod for 1.2 despite the redundant functionality. So look forward to an update soon.

Link to comment
Share on other sites

5 hours ago, zentarul said:

 

New upgraded version is now available for KSP 1.2. I have made a bunch of improvements and implemented what @hvacengi suggested!

Thanks! Have a key to change focus is so much faster than having to right click and click aim camera.

One suggestion could you make key "o" configurable?

Link to comment
Share on other sites

6 hours ago, brusura said:

Thanks! Have a key to change focus is so much faster than having to right click and click aim camera.

One suggestion could you make key "o" configurable?

It is configurable in a text file in the mod's sub-folders. I'll add a config GUI for v1.1

 

3 hours ago, hvacengi said:

Does camera focus changer now encapsulate the KSP 1.2 stock aiming, or do you still perform your own math to shift the focal point?

Yeah, I was lazy, I just kept my own maths, didn't try to interface with the new "aim camera". The result is virtually the same, except that I have a smooth transition.

Link to comment
Share on other sites

8 hours ago, zentarul said:

Yeah, I was lazy, I just kept my own maths, didn't try to interface with the new "aim camera". The result is virtually the same, except that I have a smooth transition.

Interestingly, it looks like the stock version supports a smooth transition, but doesn't do it.  They do lerp the position vector, it just seems to be very quick.  That's fine though, I mostly wanted to know if I should continue to plan on making an addon to support your mod, or if supporting stock would be the same thing.  I'm perfectly happy to support both though.  I'll dig into your source revisions some time this weekend.

Link to comment
Share on other sites

  • 3 weeks later...

I have a request after a discussion on the 1.2 sub-forum about using the camera focus as a docking camera (camera mode locked, focus on your docking port, then 'clip' the camera view inside the docking port which gives a lovely ring :) )

Yours seems to be the right mod to do so.  My request is:

When choosing a part, give the option to utilise as a camera.  It would mean zooming right in, and aligning the camera to the part at least initially even if that alignment can't be 'locked' and also change the camera mode to 'lock'.

This could be used on all parts (as it currently is), or on particular parts such as HullcamVDS cameras.

Also, to make the action available to add to Action Groups so that multiple parts could be switched too.

I'd be interested in your thoughts if it is possible!

Peace.

Link to comment
Share on other sites

  • 2 weeks later...
On 9/15/2016 at 11:21 PM, zentarul said:

New upgraded version is now available for KSP 1.2. I have made a bunch of improvements and implemented what @hvacengi suggested!

Hey dumb question - is 1.0.0.0 from a month ago the right version to use with the final KSP 1.2 released yesterday?

Edited by Fwiffo
Link to comment
Share on other sites

On 10/12/2016 at 6:03 PM, Fwiffo said:

Hey dumb question - is 1.0.0.0 from a month ago the right version to use with the final KSP 1.2 released yesterday?

Yeah, that version is still working.

Sorry for the lazy updates, I'll try to put in some more time to do the changes I have talked about previously.

Link to comment
Share on other sites

  • 2 weeks later...

I noticed that the current version 1.0 of CameraFocusChanger should be 1.2 compatible. But for some reason, pressing "O" while hovering the mouse over a part in flight does not change the focus as it used to. I've used this mod since 1.0.4 and never had a real issue with it.

Have some mechanic changed I haven't noticed? Is it still the "O" button I'm supposed to use? I have kept an eye on my log while trying, and nothing, so it should not be an exception or anything. I know that stock have something like this now, however, I do still think this mod does it better with button instead of right click menu, and smooth transition.

I hope I'm just doing something wrong.

Link to comment
Share on other sites

10 hours ago, Warezcrawler said:

I noticed that the current version 1.0 of CameraFocusChanger should be 1.2 compatible. But for some reason, pressing "O" while hovering the mouse over a part in flight does not change the focus as it used to. I've used this mod since 1.0.4 and never had a real issue with it.

Have some mechanic changed I haven't noticed? Is it still the "O" button I'm supposed to use? I have kept an eye on my log while trying, and nothing, so it should not be an exception or anything. I know that stock have something like this now, however, I do still think this mod does it better with button instead of right click menu, and smooth transition.

I hope I'm just doing something wrong.

I have the same issue. Are you using Contract Configurator? When in doubt, blame that mod:D

I kid. But seriously, I have the same issue as you. I checked the settings file and it's set to "O". I suppose I could check to make sure the dll loaded correctly.

Link to comment
Share on other sites

1 hour ago, Deimos Rast said:

I have the same issue. Are you using Contract Configurator? When in doubt, blame that mod:D

I kid. But seriously, I have the same issue as you. I checked the settings file and it's set to "O". I suppose I could check to make sure the dll loaded correctly.

Same here. It's "O", but i changed it to other keys without effect. I'm full with mods, also with Contract configurator who brought issues with other old mm code mods. Actually, i made no test without CC, perhaps tomorrow. Hopefully it is CC. I have 98 mods in total and i don't want to test all combinations. For docking i help myself with Haystack mod, where i can choose a docking port as target from list. But i miss CFC...

Edited by LeLeon
Link to comment
Share on other sites

@Deimos Rast @Warezcrawler perhaps you can provide your mod list here, so we can track the bad boy this way. KSP-AVC copy to clipboard, easiest way.

 

My mods:

Spoiler

Mod DLLs found:
Stock assembly: Assembly-CSharp v1.0.0.0
ModuleManager.2.7.2 v2.7.2.0
000_AT_Utils v1.2.1.0
001_AnisotropicPartResizer v1.2.6143.36677
002_MultiAnimators v1.1.6143.36677
AnimatedConverters v1.0.6143.36680
ConfigurableContainers v2.3.0.0
MiniAVC v1.0.3.2
aaa_Toolbar v1.0.0.0 / v1.7.13.0
USITools v1.0.0.0
AllYAll v1.0.0.0
AtmosphereAutopilot v1.5.8.0
AtmosphereAutopilot.UI v1.0.0.0
B9AnimationModules v1.0.4.0 / v1.0.4
B9PartSwitch v1.5.1.0
B9_Aerospace_WingStuff v1.0.0.0
MiniAVC v1.0.3.2
BDAnimationModules v0.6.4.2
BasicOrbit v1.0.2.0 / vv2.0
BasicOrbit.Unity v1.0.2.0
BetterCrewAssignment v0.0.0.0
BDB v1.0.0.0
BonVoyage v0.11.0.0
CameraFocusChanger v1.0.0.0
MiniAVC v1.0.3.2
ChampagneBottle v1.0.0.0
Chatterer v0.9.91.1586
MiniAVC v1.0.3.2
CCK v1.0.0.0
MiniAVC v1.0.3.0
ContractConfigurator v1.0.0.0 / v1.20.3
SimpleBoiloff v0.2.1.0
DefaultActionGroups v1.0.0.0
DeployableEngines v2.0.0.0
AGExt v1.0.0.0
kOSVoidAction v1.0.0.0
DMagic v1.3.0.4 / vv1.3.4
DMModuleScienceAnimateGeneric v0.15.0.0
ContractParser v1.0.5.0 / vv5.0
ProgressParser v1.0.6.0 / vv6.0
CapCom v1.0.2.5 / vv2.5
EditorExtensionsRedux v3.2.13.35486
MiniAVC v1.0.3.2
Atmosphere v1.5.6131.22338 / v1.0.0.0
CelestialShadows v1.5.6131.22338 / v1.0.0.0
CityLights v1.5.6131.22338 / v1.0.0.0
EVEManager v1.5.6131.22338 / v1.0.0.0
PartFX v1.5.6131.22338 / v1.0.0.0
PQSManager v1.5.6131.22338 / v1.0.0.0
ShaderLoader v1.5.6131.22337 / v1.0.0.0
Terrain v1.5.6131.22338 / v1.0.0.0
TextureConfig v1.5.6131.22338 / v1.0.0.0
Utils v1.5.6131.22337 / v1.0.0.0
_BuildManager v1.5.6131.22338 / v1.0.0.0
EVAStruts v1.0.3.0 / v3.0
Firespitter v7.3.6128.14258
FlexoTubes v1.0.4.0 / v4.0
FP_DockingSndFX v2.1.12.27690
FShangarExtender v3.4.9.0
HaystackContinued v0.5.2.1
MiniAVC v1.0.3.2
MiniAVC v1.0.3.0
HideEmptyTechTreeNodes v0.5.1.0
IndicatorLights v1.0.0.0
InterstellarFuelSwitch v2.2.6.0 / v2.2.6
MiniAVC v1.0.3.2
Scale_Redist v1.0.0.0
MiniAVC v1.0.3.2
JanitorsCloset v1.0.0.0
MiniAVC v1.0.3.2
JSIAdvTransparentPods v0.1.10.0
RasterPropMonitor v0.28.0.29319
KAS v0.6.0.0 / v0.6.0 for KSP 1.2
MiniAVC v1.0.3.1
KEI v1.2.0.0
MiniAVC v1.0.3.0
KerbalEngineer v1.1.2.2
KerbalEngineer.Unity v1.0.0.0
MiniAVC v1.0.3.2
KerbalJointReinforcement v3.3.1.0
DeployableCtrlSrf v1.0.0.0
BetterKerbNet v1.0.2.0
KerboKatz.UI v1.0.0.0
KerboKatzUtilities v1.4.0.0 / v1.4.6.0
AutomatedScienceSampler v1.3.0.0
ASS.Plugin.DMagicOrbitalScience v1.2.1.0
ASS.Plugin.DMModuleScienceAnimateGeneric v1.2.1.0
ASS.Plugin.StationScience v1.2.1.0
KIS v1.3.0.0 / v1.3.0 for KSP 1.2
KSPDev_Utils v0.14.0.0 / v0.14.0 for KSP v1.2
MiniAVC v1.0.3.0
KSP-AVC v1.1.6.2
MiniAVC v1.0.3.2
LaunchNumbering v0.3.0.0
Low_Expectations_Incorporated v1.0.6122.42916
AnimatedIntakes v1.0.0.0
TweakableAnimator v1.0.0.0
MiniAVC v1.0.3.0
MechJeb2 v2.5.1.0 / vDev #643 Sarbian / v2.5.9.0
ModularFlightIntegrator v1.0.0.0 / v1.2.2.0
MiniAVC v1.0.3.0
NearFutureElectrical v1.0.0.0
MiniAVC v1.0.3.0
NearFuturePropulsion v0.7.5.12674 / v0.7.5.*
MiniAVC v1.0.3.0
NearFutureSolar v0.4.0.0
MiniAVC v1.0.3.0
MiniAVC v1.0.3.0
FinalFrontier v1.0.0.0
KspHelper v1.0.0.0
ScienceSituationInfo v1.0.0.0
PlanetarySurfaceStructures v1.3.2.21
MiniAVC v1.0.3.0
PlanetShine v1.0.6121.34655
PortraitStats v1.0.12.0
MiniAVC v1.0.3.2
RealChute v1.4.6131.28216 / v1.4.2.0
ReentryParticleEffect v1.2.0.0
MiniAVC v1.0.3.2
AmpYear v1.4.2.0
MiniAVC v1.0.3.2
DeepFreeze v0.23.0.0
MiniAVC v1.0.3.2
RoverScience v1.0.6132.22257
SCANsat v1.6.0.10 / vv16.10
scatterer v1.0.6134.38560
ScienceRelay v1.0.2.0 / vv2.0
SmokeScreen v2.6.19.0
Stock assembly: KSPSteamCtrlr v0.0.1.35
Stock assembly: Steamworks.NET v9.0.0.0 / v9.0.0
StageRecovery v1.6.6.0
MiniAVC v1.0.3.0
MiniAVC v1.0.3.0
SurfaceLights v1.3.0.0 / v1.3.0 for KSP v1.2
MiniAVC v1.0.3.0
TacFuelBalancer v2.10.6140.20778
MiniAVC v1.0.3.2
TarsierSpaceTech v6.5.0.0
KerbalAlarmClock v3.8.1.0
KSPAlternateResourcePanel v2.9.0.0
Scale v2.3.1.0
Scale_Redist v1.0.0.0
MiniAVC v1.0.3.2
UbioWeldingLtd v2.3.4.0
DynamicTanks v1.0.0.0
Konstruction v0.0.0.0
USILifeSupport v1.0.0.0
KolonyTools v1.0.0.0
MiniAVC v1.0.3.2
AdvancedAnimator v1.0.5205.2310 / v1.1.0.0
MiniAVC v1.0.3.0
MiniAVC v1.0.3.2
WasdEditorCamera v1.0.6136.42395
WaypointManager v1.0.0.0 / v2.6.0
MiniAVC v1.0.3.0
[x] Science! v5.2.6140.20749

Folders and files in GameData:
000_AT_Utils
000_Toolbar
000_USITools
AllYAll
ASET
AtmosphereAutopilot
B9AnimationModules
B9PartSwitch
B9_Aerospace
B9_Aerospace_HX
B9_Aerospace_Legacy
B9_Aerospace_ProceduralWings
BahaSP
BasicOrbit
BetterCrewAssignment
Bluedog_DB
BonVoyage
BoxSatAlpha
BoxSatPrototypes
CameraFocusChanger
Champagne
Chatterer
CommunityCategoryKit
CommunityResourcePack
CommunityTechTree
ConfigurableContainers
ContractConfigurator
ContractPacks
CryoEngines
CryoTanks
DefaultActionGroups
DeployableEngines
Diazo
DMagicOrbitalScience
DMagicScienceAnimate
DMagicUtilities
EditorExtensionsRedux
EnvironmentalVisualEnhancements
EVAStruts
Firespitter
FlexoDocking
FP_DPSoundFX
FShangarExtender
FuelTanks_Jettison
HaystackContinued
HeatControl
HideEmptyTechTreeNodes
IndicatorLights
InterstellarFuelSwitch
JanitorsCloset
JSI
KAS
KEI
KerbalAtomics
KerbalEngineer
KerbalJointReinforcement
KerbalReusabilityExpansion
KerbNetController
KerboKatz
KermangeddonIndustries
KIS
KSC
KSP-AVC
KWRocketry
LaunchNumbering
LBSI
Low_Expectations
MarkIVSystem
MechJeb2
Mk2Essentials
Mk2Expansion
Mk3Expansion
ModsByTal
ModularFlightIntegrator
NAU
NearFutureConstruction
NearFutureElectrical
NearFutureProps
NearFuturePropulsion
NearFutureSolar
NearFutureSpacecraft
Nereid
OLDD
Olympic1ARPIcons
OrbitalTug
PlanetaryBaseInc
PlanetShine
PortraitStats
QuizTechAeroContinued
RealChute
RealPlume
RealPlume-Stock
ReentryParticleEffect
REPOSoftTech
RoverScience
SampleReturnCapsule
SCANsat
scatterer
Science-Full-reward
ScienceRelay
SmokeScreen
Stock folder: Squad

StageRecovery
StationPartsExpansion
StockVisualEnhancements
SurfaceLights
TacFuelBalancer
TarsierSpaceTech
TriggerTech
TweakScale
UbioWeldingLtd
UmbraSpaceIndustries
UniversalStorage
UnmannedBeforeManned
WasdEditorCamera
WaypointManager
[x] Science!
FinalFrontier.dat
ModuleManager.2.7.1.dll___
ModuleManager.2.7.2.dll
ModuleManager.ConfigCache
ModuleManager.ConfigSHA
ModuleManager.Physics
ModuleManager.TechTree
ModuleManager_README.md
TankConfigs.cfg___
toolbar-settings.dat
USI_LS_Fixes.cfg

 

Edited by LeLeon
Link to comment
Share on other sites

So from the responses I gather that we think it is related to another mod, conflict or something. Can anybody confirm that it is in fact working for them?

I do have an exception from EditorExtensionsRedux (every time I press "X" to change symmetry), but that is in the editor so that is a long shot.

Well from my log file, my mods should be something like

Spoiler

Mod DLLs found:
Stock assembly: Assembly-CSharp v1.0.0.0
ModuleManager.2.7.1 v2.7.1.0
MiniAVC v1.0.3.2
aaa_Toolbar v1.0.0.0 / v1.7.13.0
USITools v1.0.0.0
BonVoyage v0.11.0.0
CameraFocusChanger v1.0.0.0
ContractConfigurator v1.0.0.0 / v1.20.3
AGExt v1.0.0.0
kOSVoidAction v1.0.0.0
TWR1 v1.0.0.0
DistantObject v1.8.1.12781
DMagic v1.3.0.4 / vv1.3.4
DMModuleScienceAnimateGeneric v0.15.0.0
ContractParser v1.0.5.0 / vv5.0
ProgressParser v1.0.6.0 / vv6.0
CapCom v1.0.2.5 / vv2.5
ContractsWindow v1.0.7.1 / vv7.1
ContractsWindow.Unity v1.0.7.1
EditorExtensionsRedux v3.2.13.35486
MiniAVC v1.0.3.2
Atmosphere v1.5.6131.22338 / v1.0.0.0
CelestialShadows v1.5.6131.22338 / v1.0.0.0
CityLights v1.5.6131.22338 / v1.0.0.0
EVEManager v1.5.6131.22338 / v1.0.0.0
PartFX v1.5.6131.22338 / v1.0.0.0
PQSManager v1.5.6131.22338 / v1.0.0.0
ShaderLoader v1.5.6131.22337 / v1.0.0.0
Terrain v1.5.6131.22338 / v1.0.0.0
TextureConfig v1.5.6131.22338 / v1.0.0.0
Utils v1.5.6131.22337 / v1.0.0.0
_BuildManager v1.5.6131.22338 / v1.0.0.0
MiniAVC v1.0.3.2
EVAEnhancementsContinued v1.1.1.0
Firespitter v7.3.6128.14258
FlexoTubes v1.0.4.0 / v4.0
GTI_Utilities v1.0.57.0
MightyPirate v0.8.354.0 / v0.8.354
Launchpad v5.5.2.0 / v5.5.2
InterstellarFuelSwitch v2.2.6.0 / v2.2.6
MiniAVC v1.0.3.2
Scale_Redist v1.0.0.0
KerbalEngineer v1.1.2.2
KerbalEngineer.Unity v1.0.0.0
MiniAVC v1.0.3.2
KerbalJointReinforcement v3.3.1.0
NavBallDockingAlignmentIndicator v1.0.0.0
MiniAVC v1.0.3.2
PreciseNode v1.0.0.0 / v1.2.4.0
SCANsat v1.6.0.10 / vv16.10
scatterer v1.0.6134.38560
Stock assembly: KSPSteamCtrlr v0.0.1.35
Stock assembly: Steamworks.NET v9.0.0.0 / v9.0.0
MiniAVC v1.0.3.2
TarsierSpaceTech v6.5.0.0
KerbalAlarmClock v3.8.1.0
TransferWindowPlanner v1.6.0.0
WaypointManager v1.0.0.0 / v2.6.0
MiniAVC v1.0.3.0
[x] Science! v5.2.6140.20749
Link to comment
Share on other sites

To note: This is not a 1.2 issue, as I have the same problem, and I'm still on 1.1.3.  Here's my modlist:

Spoiler

Mod DLLs found:
Stock assembly: Assembly-CSharp v0.0.0.0
ModuleManager.2.6.25 v2.6.25.0
000_AT_Utils v1.2.0.0
001_AnisotropicPartResizer v1.0.6110.35798
002_MultiAnimators v1.0.0.0
AnimatedConverters v1.0.6110.35800
ConfigurableContainers v2.0.6110.35799
FilterExtensions v1.0.0.0
MiniAVC v1.0.3.2
aaa_Toolbar v1.0.0.0 / v1.7.11.0
USITools v1.0.0.0
ABCORS v0.3.0.0
AirPark v0.1.5.3
AllYAll v1.0.0.0
AssemblyFuelUtility v1.0.0.0
Jint v2.7.1.0 / v2.7.1
AutoRove v1.1.2.0
B9PartSwitch v1.4.3.0
BetterBurnTime v1.0.0.0
BetterCrewAssignment v0.0.0.0
BonVoyage v0.9.9.10
CameraFocusChanger v1.0.0.0
MiniAVC v1.0.3.2
ChampagneBottle v1.0.0.0
CivilianPopulationRevamp v1.0.6042.34718
CLSInterfaces v1.0.0.0
ConnectedLivingSpace v1.2.3.0
ContractConfigurator v1.0.0.0 / v1.19.0
KerbalKonstructs v1.0.0.0 / v0.9.7.3
KerKonConConExt v1.0.0.0 / v1.19.0
AnomalySurveyor v1.0.0.0 / v1.7.0
MiniAVC v1.0.3.0
CorrectCoL v1.4.0.0
DMagic v1.3.0.2 / vv1.3.2
DMModuleScienceAnimateGeneric v0.14.0.0
DefaultActionGroups v1.0.0.0
AGExt v1.0.0.0
kOSVoidAction v1.0.0.0
DistantObject v1.7.2.11138
DropAManeuverNode v1.0.0.0
ESLDCore v1.0.0.0
EasyBoard v1.2.0.0
EasyVesselSwitch v1.0.2.0 / v1.0.2 for KSP v1.1
KSPDev_Utils v0.13.0.0 / v0.13.0 for KSP v1.1
MiniAVC v1.0.3.0
EditorExtensionsRedux v3.2.13.15753
MiniAVC v1.0.3.2
EngineLight v1.0.0.0
MiniAVC v1.0.3.0
ExceptionDetector v0.0.0.0
ExperimentTracker v1.0.0.0
Launchpad v5.4.0.0 / v5.4.0
FShangarExtender v3.4.7.0
KIS v1.2.12.0 / v1.2.12 for KSP 1.1
MiniAVC v1.0.3.0
NodeHelper v1.2.1.5
FieldExperience v1.0.4.0
Firespitter v7.1.6016.23694
FlexoTubes v1.0.2.0 / v2.0
Fusebox v0.0.0.0
GravityTurn v1.4.0.0
HLAirships v5.3.0.0
Hangar v2.9.9.4
MiniAVC v1.0.3.0
IndicatorLights v1.0.0.0
InterstellarFuelSwitch v2.1.4.0 / v2.1.4
MiniAVC v1.0.3.1
Scale_Redist v1.0.0.0
InterstellarAccelerator v1.0.0.0
MiniAVC v1.0.3.0
JSIAdvTransparentPods v0.1.7.0
MiniAVC v1.0.3.2
JanitorsCloset v1.0.0.0
KAS v0.5.9.0 / v0.5.9 for KSP 1.1.3
MiniAVC v1.0.3.1
KEI v1.1.2.0
KSPDev_Utils v0.13.0.0 / v0.13.0 for KSP v1.1
MiniAVC v1.0.3.0
MoarKerbals v1.0.0.0
KRnD v0.0.0.0
Historian v1.0.0.0 / v1.2.5
KSP-AVC v1.1.6.1
KSPCalendar v1.0.5973.211
kalculator v0.2.1.0
KerBalloons v1.0.0.0
KerbalEngineer.Unity v1.0.0.0
KerbalEngineer v1.1.0.2
MiniAVC v1.0.3.2
KerbalJointReinforcement v3.1.7.0
MiniAVC v1.0.3.2
DeployableCtrlSrf v1.0.0.0
ModularFlightIntegrator v1.0.0.0 / v1.1.6.0
Kopernicus.Components v1.0.0.0
Kopernicus.OnDemand v1.0.0.0
Kopernicus v1.0.0.0
KspCraftOrganizerPlugin v1.0.6077.32027
MiniAVC v1.0.3.2
Landertron v0.13.0.0 / v0.13.0
LaunchNumbering v0.2.0.0
MagiCore v1.0.0.0
InfernalRobotics v2.0.4.0
Scale_Redist v1.0.0.0
MechJeb2 v2.5.1.0 / v / v2.5.8.0
DPAI_RPM v1.0.0.0
DockingPortAlignmentIndicator v1.0.0.0
MiniAVC v1.0.3.0
ModuleDockingNodeNamed v1.0.0.0
MiniAVC v1.0.3.0
NearFutureElectrical v1.0.0.0
MiniAVC v1.0.3.0
NearFuturePropulsion v0.4.0.0
MiniAVC v1.0.3.0
NearFutureSolar v0.4.0.0
MiniAVC v1.0.3.0
MiniAVC v1.0.3.0
FinalFrontier v1.0.0.0
S.A.V.E v1.0.0.0
CivilianManagment v1.0.0.0
ManeuverNodeSplitter v1.5.0.0 / v1.5.0
MiniAVC v1.0.3.0
PartCommander v1.0.3.0
MiniAVC v1.0.3.2
ModuleManager.2.6.25 v2.6.25.0
PersistentDynamicPodNames v1.0.6043.16547
MiniAVC v1.0.3.0
PlanetShine v1.0.5938.30099
PlanetarySurfaceStructures v1.1.4.2
PortraitStats v1.0.11.0
MiniAVC v1.0.3.2
PreciseNode v1.0.0.0 / v1.2.3.0
pWings v0.9.1.0
ProceduralFairings v0.0.0.0
ProceduralParts v1.2.5.0
QuickBrake v1.1.3.28439
QuickCursorHider v1.0.0.28390
RCSBuildAid v0.8.1.22534
RCSBuildAidToolbar v0.8.1.22534
MiniAVC v1.0.3.0
DeepFreeze v0.22.3.0
MiniAVC v1.0.3.0
IONRCS v0.1.3.0
MiniAVC v1.0.3.0
LoadingTipsPlus v1.0.0.0
RosterManager v0.2.3.0
MiniAVC v1.0.3.2
SCANsat v1.6.0.6 / vv16.6
SCANmechjeb v1.6.0.6 / vv16.6
MiniAVC v1.0.3.0
SaveConfirmationSound v1.0.0.0
SensibleScreenshot v1.2.2.0
CLSInterfaces v1.0.0.0
ShipManifest v5.1.2.2
SigmaBinary v1.0.0.0
SmartParts v1.7.0.0
PraiseTheSun v1.0.5532.16630
DeployableCtrlSrf v1.0.0.0
Stock assembly: SaveUpgradePipeline.Scripts v1.0.0.2 / v1.0.0.21
MiniAVC v1.0.3.0
StationScience v1.6.0.0
StockBugFixPlusController v1.0.0.0
DockingPortFix v1.0.0.0
GameSettingsPlus v1.0.0.0
KerbalEVAFix v1.0.0.0
ModuleControlSurfacePlus v1.0.0.0
ModuleGimbalPlus v1.0.0.0
ModuleParachutePlus v1.0.0.0
PilotRSASFix v1.0.0.0
RenderFix v1.0.0.0
StockBugFixPlusController v1.0.0.0
BodyLiftFix v1.0.0.0
GameSettingsPlus v1.0.0.0
ModuleControlSurfacePlus v1.0.0.0
ModuleGimbalPlus v1.0.0.0
ModuleParachutePlus v1.0.0.0
PilotRSASFix v1.0.0.0
SurfaceExperimentPack v1.4.2.0
MiniAVC v1.0.3.0
SurfaceLights v1.2.4.0 / v1.2.4 for KSP v1.1
Hire v1.0.0.0
MiniAVC v1.0.3.0
TacFuelBalancer v2.8.0.34891
TakeCommand v1.4.0.0
MiniAVC v1.0.3.0
TarsierSpaceTech v6.4.0.0
ToadicusTools v0.0.0.0
TrackingStationAmbientlight v1.0.0.0
Trajectories v1.6.3.0
KSPAlternateResourcePanel v2.8.1.0
KerbalAlarmClock v3.7.1.0
TransferWindowPlanner v1.5.1.0
DynamicTanks v1.0.0.0
KolonyTools v1.0.0.0
USILifeSupport v1.0.0.0
AirbagTools v1.0.0.0
FloaterTools v1.0.0.0
Lifeboat v0.1.2.0
AdvancedAnimator v1.0.5205.2310 / v1.1.0.0
VesselMover v1.5.1.0
WaypointManager v1.0.0.0 / v2.5.3
MiniAVC v1.0.3.2
WildBlueTools v1.0.0.0
Buffalo v1.0.0.0
MiniAVC v1.0.3.2
DSEVUtils v1.0.0.0
MiniAVC v1.0.3.2
MiniAVC v1.0.3.2
MoleUtils v1.0.0.0
Pathfinder v1.0.0.0
Workshop v0.14.0.0 / v0.14.0
MiniAVC v1.0.3.0
[x] Science! v5.0.6098.21682
notes v0.13.0.0
notesRPM v0.1.0.0 / v0.1

Folders and files in GameData:
000_AT_Utils
000_FilterExtensions
000_FilterExtensions Configs
000_Toolbar
000_USITools
ABCORS
ASET
AetherSpace
AirPark
AllYAll
Aquila Aerospace
AssemblyFuelUtility
AtomicAge
AutoRove
B9PartSwitch
BZ-1
BahaEPL
BahaSP
BetterBurnTime
BetterCrewAssignment
Bloody_looser
BlueTech
BonVoyage
CTN
CTTP
CameraFocusChanger
Champagne
ChopShop
CivilianPopulationRevamp
Coatl Aerospace
CommunityResourcePack
CommunityTechTree
ConfigurableContainers
ConnectedLivingSpace
ContractConfigurator
ContractPacks
CorrectCoL
Crowd Sourced Science
CxAerospace
DMagicOrbitalScience
DMagicScienceAnimate
DSD.Mobile.Labs
DStaal
DStaal_Planetary_Base_UKS_Addons
DecoupleFromHeatshield
DefaultActionGroups
Diazo
DistantObject
DropAManeuverNode
ESLDBeacons
EasyBoard
EasyVesselSwitch
EditorExtensionsRedux
EngineLight
EveEngines
ExceptionDetector
ExperimentTracker
ExtraKerbinAssembly
ExtraplanetaryLaunchpads
FShangarExtender
FarFromKerbin
Felbourn
FieldExperience
Firespitter
FlexoDocking
FusTek
Fusebox
GravityTurn
HLAirships
HabTech
Hand
Hangar
HeatControl
HeatManagement
IndicatorLights
InterstellarFuelSwitch
InterstellarMassAccelerator
JSI
JanitorsCloset
JoolBiomes
KAS
KASA
KEI
KIS
KKP
KRnD
KSEA
KSO
KSP-AVC
KSPCalendar
KSPRanks
Kalculator
KerBalloons
KerbalEngineer
KerbalHacks
KerbalJointReinforcement
KerbalKonstructs
KerbalReusabilityExpansion
KeridianDynamics
KermangeddonIndustries
KipEng
Kopernicus
KspCraftOrganizer
LBSI
LETech
LLL
Landertron
LaunchNumbering
LegoFlagsV4
MBI
MP_Nazari
MaErDa
MagiCore
MagicSmokeIndustries
MainSailor
MechJeb2
MechJeb2 Embedded by Dennis6492
MiningExpansion
Mk1CargoBay
Mk2Expansion
Mk3HypersonicSystems
Mkerb
ModPods
ModRocketSys
ModularFlightIntegrator
NAU
NEBULA
NSS
NavyFish
NearFutureConstruction
NearFutureElectrical
NearFutureProps
NearFuturePropulsion
NearFutureSolar
NearFutureSpacecraft
Nereid
NetherdyneAerospace
NicheParts
NodeSplitter
OPM
OPT
OrbitalTug
PanarchistSpaceAlliance
PartCommander
PersistentDynamicPodNames
PhantomAerospace
PlanetShine
PlanetaryBaseInc
PlanetaryDomes
Stock folder: PluginData

PortraitStats
PreciseNode
ProceduralDynamics
ProceduralFairings
ProceduralFairingsRetext
ProceduralParts
QuickBrake
QuickCursorHider
RCSBuildAid
REPOSoftTech
RLA_Stockalike
RSCapsuledyne
RadialEngineMountsPPI
RaptorAerospacial
RodFromGod
RosterManager
RoverScience
SCANsat
SDHI
SETIprobeParts
SHED
SM_Chute
SPD
SPS
SSTU-TextureSets
STMRibbons
SXMk2
SXT
SampleReturnCapsule
SaveConfirmationSound
ScienceAlert
SensibleScreenshot
ShipManifest
Sigma
SmartParts
Solar Science
SpaceDock
SpaceXLegs
SpaceY-Expanded
SpaceY-Lifters
Stock folder: Squad

StationPartsExpansion
StationScience
StockBugFixControllerPlus
StockBugFixPlus
SurfaceExperimentPackage
SurfaceLights
T.G.O.L group
TDIndustriesRCSandHypergolicengines
TRP-Hire
TacFuelBalancer
TakeCommand
TalisarParts
TarsierSpaceTech
ToadicusTools
TrackingStationAmbientlight
Trajectories
TriggerTech
UKS-KPBS_Compatibility-0.1.3
UberDyneAstronautics
UmbraSpaceIndustries
UniversalStorage
Version_2.0 Industries
VesselMover
WaypointManager
WildBlueIndustries
Workshop
[x] Science!
imkSushi
kerbodynePlus
notes
roveryard
.DS_Store
EVAManager.zip
FinalFrontier.dat
Impact.zip
ModuleManager.2.6.25.dll
ModuleManager.ConfigCache
ModuleManager.ConfigSHA
ModuleManager.Physics
ModuleManager.TechTree
PartIconFixer_1_2.dll
S.A.V.E.dat
ThrottleControlledAvionics.zip
TotalTime.zip
Universal Storage.pdf
User Guide.pdf
cls_settings.dat
deltav.ksp
deltav_outer_planets.ksp
fairingSize4.cfg
planetwiki_opm.ksp
toolbar-settings.dat
totaltime.dat

 

Link to comment
Share on other sites

Actually i compared the 3 DLL lists:

All of us share following DLLs (different versions marked with "//") in GameData:

Spoiler

 

aaa_Toolbar v1.0.0.0 / v1.7.13.0 // v1.7.11.0 // v1.7.13.0

AGExt v1.0.0.0

BonVoyage v0.11.0.0 // v0.9.9.10

CameraFocusChanger v1.0.0.0

ContractConfigurator v1.0.0.0 / v1.20.3 // v1.19.0 // v1.20.3

DMagic v1.3.0.4 / vv1.3.4 // v1.3.0.2 / vv1.3.2

DMModuleScienceAnimateGeneric v0.15.0.0 // v0.14.0.0

EditorExtensionsRedux v3.2.13.35486 // v3.2.13.15753

Firespitter v7.3.6128.14258 // v7.1.6016.23694

FlexoTubes v1.0.4.0 / v4.0 // v1.0.2.0 / v2.0

InterstellarFuelSwitch v2.2.6.0 / v2.2.6 // v2.1.4.0 / v2.1.4

KerbalEngineer v1.1.2.2 // v1.1.0.2

KerbalEngineer.Unity v1.0.0.0

KerbalJointReinforcement v3.3.1.0 // v3.1.7.0

kOSVoidAction v1.0.0.0

MiniAVC v1.0.3.2

ModuleManager.2.7.1 v2.7.1.0 // .2.6.25 v2.6.25.0 // .2.7.2 v2.7.2.0

Scale_Redist v1.0.0.0

SCANsat v1.6.0.10 / vv16.10 // v1.6.0.6 / vv16.6

USITools v1.0.0.0

 

 

Edit:

After testing it's AGXExt.dll , so Action Groups Extended.

I'm 100% sure i used CFC and AGExt together back in 1.1.2.

Edited by LeLeon
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...