Car customization should fully work

This commit is contained in:
2024-04-23 13:03:15 +02:00
parent 5eb69aaa38
commit 83ae0f6e22
14 changed files with 2118 additions and 273 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using Unity.VisualScripting;
using UnityEngine;
public class CarData : MonoBehaviour
{
public string carType;
public string carColor;
private void Awake() {
DontDestroyOnLoad(gameObject);
}
}