This commit is contained in:
Max_Divizion
2024-05-17 12:27:32 +03:00
parent f5561a9c31
commit 821c769a44
13 changed files with 653 additions and 21 deletions

View File

@ -1,13 +1,4 @@
//----------------------------------------------
// Realistic Car Controller
//
// Copyright © 2014 - 2023 BoneCracker Games
// https://www.bonecrackergames.com
// Buğra Özdoğanlar
//
//----------------------------------------------
using UnityEngine;
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
@ -15,7 +6,8 @@ using System.Collections.Generic;
/// Receiving inputs from active vehicle on your scene, and feeds dashboard needles, texts, images.
/// </summary>
[AddComponentMenu("BoneCracker Games/Realistic Car Controller/UI/RCC UI Dashboard Inputs")]
public class RCC_DashboardInputs : MonoBehaviour {
public class RCC_DashboardInputs : MonoBehaviour
{
public RCC_CarControllerV3 vehicle; // Target vehicle.
public bool autoAssignVehicle = true; // Auto assign target vehicle as player vehicle from the RCC_SceneManager.

View File

@ -1,13 +1,4 @@
//----------------------------------------------
// Realistic Car Controller
//
// Copyright © 2014 - 2023 BoneCracker Games
// https://www.bonecrackergames.com
// Buğra Özdoğanlar
//
//----------------------------------------------
using UnityEngine;
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;