1. Trouble with the game?
    Try the troubleshooter!

    Dismiss Notice
  2. Issues with the game?
    Check the Known Issues list before reporting!

    Dismiss Notice

Development Screens (Each post contains a picture OR contributing post)

Discussion in 'General Discussion' started by LT. Smell My, Aug 5, 2013.

  1. Jakux

    Jakux
    Expand Collapse

    Joined:
    Jul 1, 2020
    Messages:
    2,081
    Wow, just... wow
    Are You planning to make it on Cherrier Vivace? Or on K-Series?
     
  2. Franz027

    Franz027
    Expand Collapse

    Joined:
    May 8, 2020
    Messages:
    4,061
    This Is Fantastic! Nice Work!
     
  3. EcoNadder77

    EcoNadder77
    Expand Collapse

    Joined:
    May 29, 2017
    Messages:
    1,150
    I am making it generic enough that it could easily be applied to any vehicle.
     
    • Like Like x 12
  4. P_enta

    P_enta
    Expand Collapse

    Joined:
    Jan 11, 2020
    Messages:
    3,029
    if you could make a thread that shows how to implement the code into modded cars that would be great!

    and like a simple zip file pack
     
    • Agree Agree x 3
  5. MarkosRuiz

    MarkosRuiz
    Expand Collapse

    Joined:
    Oct 28, 2017
    Messages:
    349


    :rolleyes::p

    WIP for those wondering lol
     
    • Like Like x 10
  6. Some_Kind_Of_Canadian

    Some_Kind_Of_Canadian
    Expand Collapse

    Joined:
    Feb 6, 2020
    Messages:
    1
    how big will it boom
     
    • Like Like x 1
  7. EcoNadder77

    EcoNadder77
    Expand Collapse

    Joined:
    May 29, 2017
    Messages:
    1,150
    It is a little difficult to see, but if you look closely you will see red lines coming out of the front of both vehicles on screen.
    trajectories.png
    These lines show the car's collision avoidance system's trajectory prediction of where it thinks each vehicle will be 2 seconds into the future.
     
    • Like Like x 33
  8. Deleted member 309054

    Deleted member 309054
    Expand Collapse
    Guest

    upload_2021-1-3_14-21-19.png
    Fixed all shading errors but still looks a bit off, also the wheels pop off when you turn too much lmao
     
    #27648 Deleted member 309054, Jan 3, 2021
    Last edited by a moderator: Jan 3, 2021
    • Like Like x 4
  9. OverPower

    OverPower
    Expand Collapse

    Joined:
    Aug 9, 2013
    Messages:
    300
    ezgifcom-gif-maker.gif

    :)
     
    • Like Like x 13
    • Agree Agree x 2
  10. Agent_Y

    Agent_Y
    Expand Collapse
    Jbeam/QA support
    BeamNG Team

    Joined:
    Jul 10, 2020
    Messages:
    10,053
    This will turn into one of my favorite mods when you finish it
     
  11. MarkosRuiz

    MarkosRuiz
    Expand Collapse

    Joined:
    Oct 28, 2017
    Messages:
    349


    Does someone know how to have 0 smoke particles at idle? I just want them to appear when throttle is applied but I can't figure it out :confused:
     
    • Agree Agree x 1
  12. NOCARGO

    NOCARGO
    Expand Collapse

    Joined:
    Apr 1, 2019
    Messages:
    1,514
    Markos, line 198 of the thermals lua says
    local particulateEmission = (particulates * parentEngine.engineLoad) + idleParticulates

    try changing that into
    if absEngineRPM > 1000 then
    local particulateEmission = (particulates * parentEngine.engineLoad) + idleParticulates else
    local particulateEmission = 0
    end


    If you want smoke only to appear between certain rpm's then change the above into

    if absEngineRPM > 1000 and absEngineRPM < 2000 then
    local particulateEmission = (particulates * parentEngine.engineLoad) + idleParticulates else
    local particulateEmission = 0
    end


    This example uses 1000 and 2000 rpm's but you could apply any value you want of course.
    I think this is somewhat the simplest way. You could also try to throw parentEngine.engineLoad in as a factor so the smoke appears at certain engine load and rpm's. And you can play with the amount of particles too if you want. But the variable already has engine load built into it so.. Eventually, if you can get familiar enough with statements and the meaning of all the variables, you can setup a complete system that corresponds to real life conditions for a certain car.

    If it doesn't work let me know, then I might have to look into my working example, I think this is fine though. :)

    updated --

    I think I need to correct the declaration of the variable, because I think declaring it as being 'local' twice won't work in the same statement if it even works at all. So :

    Code:
    local function updateExhaustGFX(dt)
      local absEngineRPM = abs(parentEngine.outputAV1 * conversion.avToRPM)
      local particleAirspeed = electrics.values.airspeed
      local particulateEmission = 0
       if absEngineRPM > 3950 and absEngineRPM < 4250 then
      particulateEmission = (particulates * ((parentEngine.engineLoad) * (parentEngine.engineLoad / 4)) * parentEngine.outputAV1) + idleParticulates
       else
      particulateEmission = (particulates * parentEngine.engineLoad) + idleParticulates
        end
      local lightSmokeParticleType = particleAirspeed < 10 and 40 or 41
      local heavySmokeParticleType = particleAirspeed < 10 and 42 or 43
      local condensationParticleType = particleAirspeed < 10 and 46 or 47
      local exhaustGrayParticleType = particleAirspeed < 10 and 44 or 45
      local steamParticleType = particleAirspeed < 10 and 34 or 39
      local oilParticleType = particleAirspeed < 10 and 36 or 38
    First declare the local variable particulateEmission as being zero, then just name it particulateEmission.
    In this example I also don't declare the variable as 0 again in the statement but I shrunk down the particle amount below and then between those rpm's I raise them by adding a formula of the other variables.
    This is a working example, the code doesn't stop at the bottom of course it's just the part in question.

    But shouldn't there be no smoke coming from the stationary engine anyway IF the engine is heated ?
    That's what I experience though.. maybe I've got some setting off or so (?)
    :)
     
    #27652 NOCARGO, Jan 3, 2021
    Last edited: Jan 4, 2021
    • Like Like x 5
  13. OverPower

    OverPower
    Expand Collapse

    Joined:
    Aug 9, 2013
    Messages:
    300
    unknown1.png
     
    • Like Like x 11
  14. Average Person

    Average Person
    Expand Collapse

    Joined:
    Jul 8, 2015
    Messages:
    582
    Uh oh
    uhoh.png
     
    • Like Like x 12
  15. Franz027

    Franz027
    Expand Collapse

    Joined:
    May 8, 2020
    Messages:
    4,061
    • Agree Agree x 2
  16. Average Person

    Average Person
    Expand Collapse

    Joined:
    Jul 8, 2015
    Messages:
    582
    my summer car map, still trying to find some textures and buildings though
     
    • Like Like x 8
  17. jordaniwick

    jordaniwick
    Expand Collapse

    Joined:
    Mar 1, 2020
    Messages:
    316
    Is the map gonna...................................................................... release (i am noz begging just asking)
     
  18. Average Person

    Average Person
    Expand Collapse

    Joined:
    Jul 8, 2015
    Messages:
    582
    well I probably will finish it unless I start slacking but even just today I've already got a big chunk of the map into beamng

    The biggest issue right now is just finding all the building assets and then manually placing them around the map as well as finding a few obscure textures
     
    • Like Like x 6
  19. jordaniwick

    jordaniwick
    Expand Collapse

    Joined:
    Mar 1, 2020
    Messages:
    316
     
    • Agree Agree x 1
  20. 1NbaN3

    1NbaN3
    Expand Collapse
    Banned

    Joined:
    Aug 14, 2020
    Messages:
    117
    why you maked map from sumer car its already maked you need to make better gtasan andreas map or gta 5
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice