Jump to content

Lgg159

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by Lgg159

  1. Hello ! I'm trying to make an engine with the MultiModeEngine module but when i add this module, the flame animation doesn't play in the game. I made two engines with it and they all have the same issue. Is there something else to add for it to work ? Thanks.
  2. Hello ! When i launch the game with rss, it stays stuck on the black screen with the loading logo forever. I am playing in 1.6.1. Did i do something wrong ?
  3. @zer0Kerbal I changed powerEffectName with runningEffectName but the flame still not appear. I have added a flameout effect and when there is not fuel anymore the flameout effect work, but not in the right direction. After, i had looked at the OrbitalTug's code but i dont see big difference that can prevent the apparition of the flame.
  4. Hello ! Im working on my first ksp mod who's gonna add new propulsion systems (like nuclear fusion or antimatter for example). I have a little problem with one of my engines : im using a module enginesFX for the engine principal informations and a prefab_particle for the flame. And the flame, dont want to apears when the engine start. If someone can check the code and tell me if there is errors, it will be very helpful ! Thank you !! PART { name = EtrFusion1 module = Part author = Lgg159 mesh = model.mu rescaleFactor = 0.78125 node_stack_top = 0.0, 0.16, 0.0, 0.0, 1.0, 0.0, 1 TechRequired = heavyRocketry entryCost = 0 cost = 36000 category = Engine subcategory = 0 title = "ETR-1" Aerospike Fusion Engine manufacturer = UTech Nucler Science Inc. description = The "ETR-1" engine use a new technology : it uses nuclear fusion and electromagnetic fields to create and propulse very hot helium in the space. attachRules = 1,0,1,0,0 mass = 2.7 heatConductivity = 0.06 skinInternalConductionMult = 4.0 emissiveConstant = 0.8 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 2 crashTolerance = 10 breakingForce = 200 breakingTorque = 200 maxTemp = 3000 bulkheadProfiles = size1 tags = fusion etr nuclear helium he3 magnetic tritium deuterium MODULE { name = MultiModeEngine primaryEngineID = Helium3 primaryEngineModeDisplayName = Helium3 secondaryEngineID = Tritium secondaryEngineModeDisplayName = Tritium autoSwitchAvailable = False } MODULE { name = ModuleEnginesFX engineID = Helium3 powerEffectName = running thrustVectorTransformName = thrustTransform exhaustDamage = True ignitionThreshold = 0.1 minThrust = 0 maxThrust = 5600 heatProduction = 400 fxOffset = 0, 0, 1.2 PROPELLANT { name = DeuteriumFuel ratio = 4.5 DrawGauge = True } PROPELLANT { name = Helium3Fuel ratio = 3 } atmosphereCurve { key = 0 20000 key = 1 19800 key = 6 0.001 } } MODULE { name = ModuleEnginesFX engineID = Tritium powerEffectName = running thrustVectorTransformName = thrustTransform exhaustDamage = True ignitionThreshold = 0.1 minThrust = 0 maxThrust = 5500 heatProduction = 390 fxOffset = 0, 0, 1.2 PROPELLANT { name = DeuteriumFuel ratio = 4.5 DrawGauge = True } PROPELLANT { name = TritiumFuel ratio = 3 } atmosphereCurve { key = 0 19800 key = 1 19200 key = 6 0.001 } } EFFECTS { running { AUDIO { channel = Ship clip = sound_rocket_hard volume = 0.0 0.0 volume = 0.05 0.6 volume = 1.0 1.5 pitch = 0.0 1.2 pitch = 1.0 2.0 loop = true } PREFAB_PARTICLE { prefabName = fx_exhaustFlame_blue transformName = thrustTransform emission = 0.0 0.0 emission = 0.05 0.0 emission = 0.075 0.25 emission = 1.0 1.25 speed = 0.0 0.25 speed = 1.0 1.0 localOffset = 0, 0, 0 } PREFAB_PARTICLE { prefabName = fx_exhaustLight_blue transformName = thrustTransform emission = 0.0 0.0 emission = 0.05 0.0 emission = 0.075 0.25 emission = 1.0 1.25 speed = 0.0 0.25 speed = 1.0 1.0 localOffset = 0, 0, 0 } } } MODULE { name = ModuleGimbal gimbalTransformName = thrustTransform gimbalRange = 3 } MODULE { name = FXModuleAnimateThrottle animationName = ksp_l_midrangeEngine_anim responseSpeed = 0.001 dependOnEngineState = True dependOnThrottle = True } MODULE { name = ModuleAlternator RESOURCE { name = ElectricCharge rate = 6.0 } } MODULE { name = ModuleTestSubject useStaging = True useEvent = True situationMask = 127 CONSTRAINT { type = REPEATABILITY value = ALWAYS prestige = Trivial } CONSTRAINT { type = REPEATABILITY value = BODYANDSITUATION prestige = Significant } CONSTRAINT { type = REPEATABILITY value = ONCEPERPART prestige = Exceptional } CONSTRAINT { type = ALTITUDEENV test = GT value = 4000 prestige = Trivial } CONSTRAINT { type = ALTITUDEENV test = LT value = 8000 prestige = Trivial } CONSTRAINT { type = ALTITUDEENV test = GT value = 2000 prestige = Significant } CONSTRAINT { type = ALTITUDEENV test = LT value = 4000 prestige = Significant } CONSTRAINT { type = ALTITUDEENV test = GT value = 1000 prestige = Exceptional } CONSTRAINT { type = ALTITUDEENV test = LT value = 2000 prestige = Exceptional } CONSTRAINT { type = ALTITUDE test = GT value = 0 // this just registers altitude as something to care about situationMask = 8 } CONSTRAINT { type = ALTITUDE test = LT value = 300000 situationMask = 16 body = _NotSun } CONSTRAINT { type = ALTITUDE test = LT value = 600000 situationMask = 32 body = _NotSun } CONSTRAINT { type = SPEED test = GT value = 0 situationMask = 8 prestige = Trivial } CONSTRAINT { type = SPEED test = LT value = 600 situationMask = 8 prestige = Trivial } CONSTRAINT { type = SPEED test = GT value = 300 situationMask = 8 prestige = Significant } CONSTRAINT { type = SPEED test = LT value = 1200 situationMask = 8 prestige = Significant } CONSTRAINT { type = SPEED test = GT value = 600 situationMask = 8 prestige = Exceptional } CONSTRAINT { type = SPEED test = LT value = 2500 situationMask = 8 prestige = Exceptional } CONSTRAINT { type = SPEEDENV test = LT value = 200 prestige = Trivial } CONSTRAINT { type = SPEEDENV test = GT value = 100 prestige = Trivial } CONSTRAINT { type = SPEEDENV test = LT value = 100 prestige = Significant } CONSTRAINT { type = SPEEDENV test = GT value = 50 prestige = Significant } CONSTRAINT { type = SPEEDENV test = LT value = 50 prestige = Exceptional } CONSTRAINT { type = SPEEDENV test = GT value = 20 prestige = Exceptional } } MODULE { name = ModuleSurfaceFX thrustProviderModuleIndex = 0 fxMax = 0.8 maxDistance = 50 falloff = 2 thrustTransformName = thrustTransform } }
  5. @coyotesfrontier Thank for your anwer. But there is a problem : i dont have DOE and im playing in 1.5.1.
  6. Hello ! I have a little problem when i launch something : at few moments, a little white ball apears at the same place as the ship. These little balls dont have collision and absolutly dont move. If anybody knows a thing about that, thanks to help me ! little video if you want to see : https://drive.google.com/open?id=1it2FtqdbTE46gI0znc-ffBvthioIwZ87
  7. @Thiagobs Thank you so much !!!
  8. @sarbian Y a t il une autre page ou on peut trouver les memes infos ? (celle que vous nous donnez n'existe plus) Merci pour vos réponses ! [Added translation] @sarbian Is there another page where you can find the same info? (the one you give us no longer exists) thank you for your answers
  9. @taniwha Ok the problem come from an older version of your addon. I've downloaded the last one and the problem is gone. But thank you anyway !
  10. Hello ! I have just one question : how to use the mesh collider ? When i want to add one, blender send me an error message. So thank you for your help !
×
×
  • Create New...