-
Posts
276 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by Tonas1997
-
Sorry, I didn't phrase it correctly. Kerbalism experiments use a "toggle" animation rather than separate open/close ones; somehow, I got it to work with a telescope from another mod by referencing its TSTSpaceTelescope module's baseTransformName field, so I thought about trying to use the same solution on the TST advanced space telescope. Since that field doesn't exist on the part, I wanted to know if baseTransformName has a default value.
-
Thanks! Would "open" be the equivalent to the Telescope transform found on the other space telescope? I reckon that one is more of toggle, which is what I need. MODULE { name = TSTSpaceTelescope maxZoom = 4 xmitDataScalar = 0.5 labBoostScalar = 1.2 baseTransformName = Telescope cameraTransformName = CameraTransform lookTransformName = LookTransform }
-
Would this mod allow me to enable engine burning during time warp without fully enabling physics? I saw it being mentioned somewhere as an alternative to Persistent Thrust, which is somewhat broken in 1.10...
-
Is anyone having issues getting this mod to work with bipropellant engines in 1.10? Weirdly enough, ion engines work just fine and generate thrust during time warp, but other ones don't: the PAW shows them as not having their fuel requirements met (even if they work just fine if I uninstall Persistent Thrust) and I can "ignite" them, but no thrust is generated and I can't see the Waterfall exhaust effects. The engine does appear to emit light as predicted by Engine Lightning, so something's acting up For reference, this is happening in an RO modpack.
-
Is it possible to use ElectricEngineControllerFX to allow ion engines from other mods or stock to work during time warp? Most of them work quite simply (just regular engines accepting xenon and electric charge as propellants), but I can't find any documentation for this module Ideally I would be using PersistentThrust, but the mod seems a bit broken in 1.10...
-
MAS seems to make the screen go black when a capsule implementing its IVA elements detaches from a Modular Launchpads base. The issue was identified here and I managed to replicate it as well
- 1,006 replies
-
- iva
- rasterpropmonitor
-
(and 1 more)
Tagged with:
-
[1.12.x] Near Future Technologies (September 6)
Tonas1997 replied to Nertea's topic in KSP1 Mod Releases
Is the Pandora capsule weightless for anyone else? The config says it should have 3.0405 tons, but when I place it on the editor it immediately goes to 0... EDIT: nevermind, it was a faulty MFT config lol -
[1.8.x-1.12.x] - RasterPropMonitor (adopted)
Tonas1997 replied to JonnyOThan's topic in KSP1 Mod Releases
Getting a weird error in the orbit MFD screen (which doesn't show the orbit diagram with the blue ellipse, for some reason): [EXC 13:42:42.815] MissingMethodException: Vector3d Orbit.Up(double) JSI.MonitorPage.RenderBackground (UnityEngine.RenderTexture screen) (at <05eb104d0dd24f118b48a18639af1146>:0) JSI.RasterPropMonitor.RenderScreen () (at <05eb104d0dd24f118b48a18639af1146>:0) JSI.RasterPropMonitor.OnUpdate () (at <05eb104d0dd24f118b48a18639af1146>:0) InternalProp.OnUpdate () (at <c1858a3f77504bd1aaa946fdccf84670>:0) InternalModel.OnUpdate () (at <c1858a3f77504bd1aaa946fdccf84670>:0) Part.InternalOnUpdate () (at <c1858a3f77504bd1aaa946fdccf84670>:0) Part.Update () (at <c1858a3f77504bd1aaa946fdccf84670>:0) UnityEngine.DebugLogHandler:LogException(Exception, Object) ModuleManager.UnityLogHandle.InterceptLogHandler:LogException(Exception, Object) UnityEngine.Debug:CallOverridenDebugHandler(Exception, Object) -
Vexarp IVA [ RPM/MAS IVAs for NFSpacecraft ] ( 0.6.1 )
Tonas1997 replied to Vexmae's topic in KSP1 Mod Releases
Can this be used in 1.10?- 84 replies
-
- spacecraft
- near future
-
(and 1 more)
Tagged with:
-
How do I get this to work with RPM? I have both mods installed, but I get blank screens on the MFD and a couple of errors: [ERR 20:23:23.940] Matrix stack full depth reached [ERR 20:23:23.940] Matrix stack full depth reached [EXC 20:23:23.948] MissingMethodException: Vector3d Orbit.Up(double) JSI.MonitorPage.RenderBackground (UnityEngine.RenderTexture screen) (at <05eb104d0dd24f118b48a18639af1146>:0) JSI.RasterPropMonitor.RenderScreen () (at <05eb104d0dd24f118b48a18639af1146>:0) JSI.RasterPropMonitor.OnUpdate () (at <05eb104d0dd24f118b48a18639af1146>:0) InternalProp.OnUpdate () (at <c1858a3f77504bd1aaa946fdccf84670>:0) InternalModel.OnUpdate () (at <c1858a3f77504bd1aaa946fdccf84670>:0) Part.InternalOnUpdate () (at <c1858a3f77504bd1aaa946fdccf84670>:0) Part.Update () (at <c1858a3f77504bd1aaa946fdccf84670>:0) UnityEngine.DebugLogHandler:LogException(Exception, Object) ModuleManager.UnityLogHandle.InterceptLogHandler:LogException(Exception, Object) UnityEngine.Debug:CallOverridenDebugHandler(Exception, Object)
-
Is KSPTOT able to calculate a Earth - Earth - Jupiter fly-by sequence similar to Juno's?
- 4,935 replies
-
- ksptot
- mission planning
- (and 3 more)
-
[1.10.1+] Contract Configurator [v1.30.5] [2020-10-05]
Tonas1997 replied to nightingale's topic in KSP1 Mod Releases
There's something weird going on with random parameters... I have a "launch satellite" contract of which there can be a few simultaneous instances. The contract type has a random resource requirement parameter that seems to work fine when the contracts are generated, but after a while they all end up requiring the exact same resource amount EDIT: I was snooping through the persistent.sfs file and came across one of these glitched contracts; the parameter node delegate kept the random resource quantity the contract was generated with (710 units of ComSatPayload): PARAM { name = HasResource id = HasComSatPayload state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 ContractIdentifier = AdvSatellites.RepeatComSats title = notes = completedMessage = hideChildren = True allowStateReset = True capacity = False RESOURCE { resource = ComSatPayload minQuantity = 1040 } PARAM { name = ParameterDelegate`1 state = Incomplete disableOnStateChange = False values = 0,0,0,0,0 title = Resource: ComSatPayload: At least 710 units notes = completedMessage = } } Why did the minQuantity field change to something else? One of the contract instances was firstly generated with a 1040 unit requirement, so did CC assign that value to the rest of them? For reference, here's the actual contract definition:- 5,201 replies
-
Is it possible to instead configure vents to use an EFFECTS node as you would with an engine?
-
Hello! Two questions: Is the config MM-tweakable? It would be nice for us to be able to add in new patches like this @CIT_BAM_SETTINGS:FINAL { // Standard bipropellants @resdef ^=:$:;Kerosene,0.001: @resdef ^=:$:;LqdMethane,0.00064: @resdef ^=:$:;LqdHydrogen,0.00271: // hypergols @resdef ^=:$:;Hydrazine,0.00526: // intert gasses (absorb explosions) @resdef ^=:$:;Nitrogen,-0.0005: @resdef ^=:$:;Helium,-0.0003: // others @resdef ^=:$:;Antimatter,24.289: } but I can't see this node anywhere on the cache Does the mod provide a default configuration for non-patched resources? I jumped in game and parts that aren't explicitely configured don't produce any explosions
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
Tonas1997 replied to Gameslinx's topic in KSP1 Mod Releases
Update: I disabled tessellation on Earth in an attempt to fix the issue but now I have weird black voids around the space center. Shouldn't I be able to disable Parallax on any body without issues?- 3,126 replies
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
Tonas1997 replied to Gameslinx's topic in KSP1 Mod Releases
Did anyone else come across this glitch when using Engine Lighting with Parallax?- 3,126 replies
-
[1.8.x] Kerbal Foundries -- Continued - Tracks, Wheels, and Gear
Tonas1997 replied to Shadowmage's topic in KSP1 Mod Releases
Do the latest DLLs for version 1.8.1 allow me to configure the friction curves like this? -
[KSP 1.12.x] kOS v1.4.0.0: kOS Scriptable Autopilot System
Tonas1997 replied to Dunbaratu's topic in KSP1 Mod Releases
If my boot file has an error and I fix it in Notepad++ during the flight scene, how do I get the terminal to reload the file? When I reboot it doesn't seem to do so- 1,361 replies
-
- autopilot
- programming
-
(and 1 more)
Tagged with:
-
Roger! I did manage to find the old log somewhere else but it didn't show anything out of the ordinary: the experiment was correctly registered by Bureaucracy. Here's the player-prev.log, if you want to take a look. The experience is called "RP0RPWS1@SunInSpaceLowNoBiome". In the meanwhile, my probe entered another SOI, started recording the same experiment and now Bureaucracy promply displayed it as being researched, so it could have been a one-time thing lol Also, would it be easy/possible/not-much-of-a-bother to backport the UI fixes to 1.4? When I have a lot of queued experiences it's impossible to read the research window - and I can't imagine the nightmare it will be once my astronaut roster grows past its own as well!
-
I recently completed an experiment that yielded 165 science points, but I couldn't find it on the "research" panel and didn't get the science yet. My yearly capacity is at around 150 points, so do I need to wait for the next budget? Also, I'm playing with Kerbalism's science module, but it hasn't given me trouble so far.
-
Hmm, I just checked out both logs and the former doesn't accuse any error, while KSP.log doesn't indicate anything malfunctioning after [LOG 15:25:25.676] [KSPTOT Connect] message from [0]: GetCelestialBodyData n 0 HOWEVER, after a while my log did start getting flooded with this message: [EXC 15:30:19.387] InvalidOperationException: The operation is not allowed on non-connected sockets. System.Net.Sockets.TcpClient.GetStream () (at <376e8c39bbab4f1193a569c8dbe4305c>:0) KSPTOTConnect.TMMinorFrame.cleanTCPClientsStreamsDTs () (at <32f0b1b7ad6440dbb09c1a58f9dd41db>:0) KSPTOTConnect.TMMinorFrameManager.cleanTCPClientsStreamsDTs () (at <32f0b1b7ad6440dbb09c1a58f9dd41db>:0) KSPTOTConnect.KSPTOTVesselTMTransmitter.cleanTCPClientsStreamsDTs () (at <32f0b1b7ad6440dbb09c1a58f9dd41db>:0) KSPTOTConnect.KSPTOTVesselTMTransmitter.transmitTM () (at <32f0b1b7ad6440dbb09c1a58f9dd41db>:0) KSPTOTConnect.KSPTOTConnect.Update () (at <32f0b1b7ad6440dbb09c1a58f9dd41db>:0) UnityEngine.DebugLogHandler:LogException(Exception, Object) ModuleManager.UnityLogHandle.InterceptLogHandler:LogException(Exception, Object) UnityEngine.Debug:CallOverridenDebugHandler(Exception, Object) and ended up at around 140Mb . Now, at some point I tried using the MCC Real Time System, but I can't tell if the spam was caused by it.
- 4,935 replies
-
- ksptot
- mission planning
- (and 3 more)
-
By the way, I'm using KSPTOT with RSS and it didn't generate configs for Uranus, Neptune, Pluto and a whole lot of other bodies from RealExpansion. This is what I got: bodies.ini EDIT: I think it fixed itself just by running the "Create bodies file" utility a few more times
- 4,935 replies
-
- ksptot
- mission planning
- (and 3 more)