• Welcome to PiBoSo Official Forum. Please login or sign up.
 
March 28, 2024, 06:32:14 PM

News:

GP Bikes beta21c available! :)


Dashboard on the steer

Started by Blackheart, June 19, 2018, 10:40:18 AM

Previous topic - Next topic

Blackheart

I updated an old motorcycle,  but the dashboard on the steer in game not works, does anyone notice where the error is?:

Quotegauges
   {
      scene = 1
      rpm_analog
      {
         enable = 1
         needle = rpmneedle
         axis = y-
         step0value = 5000
         step0angle = 0
         step1value = 17000
         step1angle = -225
      }      
      lcd
                {
         enable = 1
         texture = w_dashboard
         emission = 0.5
         
         screen0
         {
            enable = 1
            gear
            {
               enable = 0
               spacing = 33
               font = zip_gear_font.tga
               fontstring = 0123456789N
               posx = 383
               posy = 119
            }
            speed
            {
               enable = 1
               spacing = 25
               font = zip_speed_font.tga
               fontstring = 0123456789
               posx = 193
               posy = 134
            }
            rpm
            {
               enable = 1
               spacing = 20
               font = zip_rpm_font.tga
               fontstring = 0123456789
               posx = 188
               posy = 59
            }
            watertemp
            {
               enable = 1
               spacing = 23
               font = font2.tga
               fontstring = 0123456789
               posx = 73
               posy = 130
            }
            lap
            {
               enable = 1
               spacing = 12,5
               font = zip_lap_font.tga
               fontstring = 0123456789
               posx = 70
               posy = 180            
            }
            lastlap
            {
               enable = 1s
               spacing = 17.5
               font = zip_lastlap_font.tga
               fontstring = 0123456789N
               posx = 260
               posy = 173
               spacing2 = 5
               font2 = zip_lastlap_font_p.tga
               fontstring2 = :.
            }
         }
      }

Steven


Blackheart


Steven

This should work:

gauges
{
lcd
{
scene = 1
enable = 1
texture = w_dashboard
emission = 0.5

screen0
{
enable = 1
gear
{
enable = 0
spacing = 33
font = zip_gear_font.tga
fontstring = 0123456789N
posx = 383
posy = 119
}
speed
{
enable = 1
spacing = 25
font = zip_speed_font.tga
fontstring = 0123456789
posx = 193
posy = 134
}
rpm
{
enable = 1
spacing = 20
font = zip_rpm_font.tga
fontstring = 0123456789
posx = 188
posy = 59
}
watertemp
{
enable = 1
spacing = 23
font = font2.tga
fontstring = 0123456789
posx = 73
posy = 130
}
lap
{
enable = 1
spacing = 12,5
font = zip_lap_font.tga
fontstring = 0123456789
posx = 70
posy = 180
}
lastlap
{
enable = 1
spacing = 17.5
font = zip_lastlap_font.tga
fontstring = 0123456789N
posx = 260
posy = 173
spacing2 = 5
font2 = zip_lastlap_font_p.tga
fontstring2 = :.
}
}
}
}

Blackheart