Exemplo n.º 1
0
    /// <summary>
    ///	 Enable / Disable Smoke Particles. You can use it for previewing current wheel smokes.
    /// </summary>
    public static void SetSmokeParticle(RCC_CarControllerV3 vehicle, bool state)
    {
        if (!CheckVehicle(vehicle))
        {
            return;
        }

        vehicle.PreviewSmokeParticle(state);
    }
Exemplo n.º 2
0
 /// <summary>
 ///	 Enable / Disable Smoke Particles. You can use it for previewing current wheel smokes.
 /// </summary>
 public static void SetSmokeParticle(RCC_CarControllerV3 car, bool state)
 {
     car.PreviewSmokeParticle(state);
 }