0 votes
by

Dear Edy,

I need to build a real car simulator using :

  • Logitech G27 / G29

I would like to know if the Community Edition supports clutch pedal or not?

Thank you

1 Answer

0 votes
by
selected by
 
Best answer

Vehicle Physics Pro supports the clutch pedal but the add-on for Logitech G27/G29 is not included in the Community Edition. However, vehicles can be fully controlled from scripting so you have several alternatives:

The latest two options require writing an script for passing the input to the vehicle via the vehicle's data bus. See:

https://vehiclephysics.com/advanced/databus-reference/

by
Ok thank you Edy
by
I tried using the third option. but I got this warning :
"VPP JPickup (VehiclePhysics.VPVehicleController): This add-on component is not supported in this edition of Vehicle Physics Pro. Disabled: VehiclePhysics.MyInput"
by
The Community Edition doesn't support custom vehicle add-ons (VehicleBehaviour). Use the standard MonoBehaviour instead for writing your code. Add a reference to the vehicle as with any other Unity component (i.e. "public VehicleBase vehicle;").
...