Where is MIXTURE SETTING in garage?

Discussion in 'User Interface and HUD Modding' started by Goibaka, Jan 4, 2017.

  1. Goibaka

    Goibaka Registered

    Joined:
    Sep 29, 2016
    Messages:
    72
    Likes Received:
    377
    Hello:

    I'm not able find the new feature "Mixture setting" since build 1108 in UI garage.It should be in Garage\General\Engine.

    Any idea?
     
  2. Juergen-BY

    Juergen-BY Registered

    Joined:
    Jun 16, 2012
    Messages:
    3,089
    Likes Received:
    440
    I assume you`re not using the default UI?
     
  3. Goibaka

    Goibaka Registered

    Joined:
    Sep 29, 2016
    Messages:
    72
    Likes Received:
    377
    No, I am using rF Studio 397 default UI in rF2 and rF2 Devmode
    I can see it in rF2 "Normal" but not in DevMode
     
  4. Lazza

    Lazza Registered

    Joined:
    Oct 5, 2010
    Messages:
    12,386
    Likes Received:
    6,601
    The Devmode UI hasn't been updated.
     
  5. Goibaka

    Goibaka Registered

    Joined:
    Sep 29, 2016
    Messages:
    72
    Likes Received:
    377
    Ok, then we must wait a new update.
    Thanks
     
  6. Lazza

    Lazza Registered

    Joined:
    Oct 5, 2010
    Messages:
    12,386
    Likes Received:
    6,601
    Go to:
    rFactor 2\ModDev\Options\MODMode

    Open up UI.OSC (notepad or similar)

    Search for:
    Gizmo="APP_SPINBOX_GARAGE_ENGINEMAP"

    Now create a new 'item' below that one, but like this:

    Code:
        Gizmo="APP_SPINBOX_GARAGE_ENGINEMIXTURE"
        {
          Position=(1055,945)
          AttributeSet="rf2_spinner_garageA"
          Caption1="ENGINE MIXTURE"
          Caption3="ENGINE MIXTURE"
        }
    
    If you do this right, you'll have one entire code block that says ENGINEMAP, and the other that says ENGINEMIXTURE.

    It doesn't quite put it in the right place, but it works.


    Your other option would be to extract the UI.OSC from the core game files. I'm just not totally sure they're identical between the standard and devmode versions.
     
  7. Goibaka

    Goibaka Registered

    Joined:
    Sep 29, 2016
    Messages:
    72
    Likes Received:
    377
    Oh...Yes!!!

    Thanks so much. It works perfectly now.

    But better place in garege like rF2 normal mode:

    Gizmo="APP_SPINBOX_GARAGE_ENGINEBRAKEMAP"
    {
    Position=(1055,945)
    AttributeSet="rf2_spinner_garageA"
    Caption1="BRAKE MAP"
    Caption3="BRAKE MAP"
    }

    Gizmo="APP_SPINBOX_GARAGE_ENGINEMAP"
    {
    Position=(1055,920)
    AttributeSet="rf2_spinner_garageA"
    Caption1="BOOST MAPPING"
    Caption3="BOOST MAPPING"
    }

    Gizmo="APP_SPINBOX_GARAGE_ENGINEMIXTURE"
    {
    Position=(1055,895)
    AttributeSet="rf2_spinner_garageA"
    Caption1="ENGINE MIXTURE"
    Caption3="ENGINE MIXTURE"
    }

    Gizmo="APP_SPINBOX_GARAGE_RADIATOR"
    {
    Position=(1055,870)
    AttributeSet="rf2_spinner_garageA"
    Caption1="GRILLE TAPE"
    Caption3="GRILLE TAPE"
    }

    Gizmo="APP_SPINBOX_GARAGE_REVLIMITER"
    {
    Position=(1055,845)
    AttributeSet="rf2_spinner_garageA"
    Caption1="REV LIMITER"
    Caption3="REV LIMITER"
    }
     

Share This Page