Profile image

[GA] MOBAL-6

31.1k DDVC  1.4 years ago

MOBAL-6 is a LMP Racing car constructed by Galang Racing. The car goes about 400 km/h. The name is an abbreviation of Mobil Balap.

Controls:

Pitch: Move
Roll: Turn
Brake is
AG1: Right Door
AG2: Left Door
AG6: Left Turn Signal
AG7: Right Turn Signal
AG8: Turn Assist

VR:
- Steering Wheel For Turn
- Right Grip
1. Trigger: Forward
2. Button 1: Reverse
- Left Grip:1. Trigger: Brake
All switches are labeled

Pictures


Cockpit dashboard

Zooming

Enjoy!

Spotlights

  • This craft is curated

General Characteristics

  • Created On Android
  • Wingspan 6.6ft (2.0m)
  • Length 16.0ft (4.9m)
  • Height 3.9ft (1.2m)
  • Empty Weight N/A
  • Loaded Weight 2,101lbs (953kg)

Performance

  • Wing Loading 19.4lbs/ft2 (94.8kg/m2)
  • Wing Area 108.3ft2 (10.1m2)
  • Drag Points 1181

Parts

  • Number of Parts 187
  • Control Surfaces 0
  • Performance Cost 753
  • Log in to leave a comment
  • Profile image
    31.1k DDVC

    @ToeTips you're welcome

    +1 6 months ago
  • Profile image
    24.5k ToeTips

    @DDVC
    Okay thank you.

    6 months ago
  • Profile image
    31.1k DDVC

    @ToeTips too much grip at the front I think. For suspension I recommend use low physics for the car because that make the suspension happen.

    6 months ago
  • Profile image
    24.5k ToeTips

    @DDVC
    Okay, I am guessing the lack of suspension is what makes it less stable?

    6 months ago
  • Profile image
    31.1k DDVC

    @ToeTips the car make it not smooth in this one. D F-1 3 and Mobal 6 have the exact same steering assist. The Ferrari have the same only a few number change in the code.

    6 months ago
  • Profile image
    24.5k ToeTips

    For now I think I will use the steering assist if it works well on mine. Is there a way to make it a little smoother?

    6 months ago
  • Profile image
    24.5k ToeTips

    @DDVC
    Okay thank you, I will come back to this when I need it!

    6 months ago
  • Profile image
    31.1k DDVC

    @ToeTips
    The engine RPM have an output that I set to PM. An airliner engine placed at the rear for the sound. The first gear activate when the engine RPM is below 1100, second below 1400, third < 1600 etc. The basic input for the engine is PM * 0.004, that's for the first gear. If you want to add more gear the number multiplication for PM should decrease. So if you want 2 gear you have to input like this:
    PM * (PM < 1100 ? 0.004 : 0.0035)
    I'll explain the thing in the collum. If PM is less than 1100, the number for multiplication should be 0.004, if not then 0.0035. That's code for 2 gears if you want more you have to repeat like this:
    PM * (PM < 1100 ? 0.004 : (PM < 1400 ? 0.0035 : 0.003))
    This is 3 gears. Remember the last gear doesn't need another (?) just write : and write the last multiplication number.

    For idle you have to clamp the input minimum. With the example above I'll add clamp to the code:
    clamp((PM * (PM < 1100 ? 0.004 : (PM < 1400 ? 0.0035 : 0.003))), 1.5, 50)
    That mean the input to the engine will not be less than 1.5 and no more than 50.

    For the "burnout" the input should change to Pitch under low RPM.
    clamp(PM < 300 ? (Pitch * 4) : (PM * (PM < 1100 ? 0.004 : (PM < 1400 ? 0.0035 : 0.003))), 1.5, 50)
    That mean if the RPM is below 300 the input will be Pitch time 4.

    My entire code for this car is this:
    clamp(PM < 300 ? Pitch * 4 : (PM* (PM < 1100 ? 0.004 : ( PM < 1400 ? 0.0035 : (PM< 1600 ? 0.003 : (PM< 1900 ? 0.0025 : (PM< 2200 ? 0.00225 : ( PM<2500 ? 0.002 : ( PM<2900 ? 0.00175: 0.0015 )))))))), 1.5, 50)

    The gear limit depend on the limit of speed the tire can go. The number of gear doesn't really have anything to do with the speed the car going as its only for sound. The number of gear also depend on how you like it so you can have as many or less gear as you want.

    6 months ago
  • Profile image
    24.5k ToeTips

    Okay this is very underrated! How did you do the gear change sounds and how could one limit it to like a 6 speed?

    +1 6 months ago
  • Profile image

    Terima kashih yee!!!

    +2 1.4 years ago