using UnityEngine;
using TMPro;
using AC;
using Michsky.MUIP; // Import Modern UI Pack
public class LoadManager : MonoBehaviour
{
public ProfileManager profileManager;
public TMP_Text[] profileNameDisplays; // Text fields to display profile…
using UnityEngine;
using TMPro;
using Michsky.MUIP; // Import Modern UI Pack
public class SaveManager : MonoBehaviour
{
public ProfileManager profileManager;
public TMP_InputField[] profileNameInputs; // Input fields for profile names
[…
using UnityEngine;
using AC;
using System.IO;
using System.Diagnostics;
[System.Serializable]
public class ProfileData
{
public string profileName;
// Dodaj dodatkowe pola, które chcesz zapisać
}
public class ProfileManager : MonoBehaviour…
using System.Diagnostics;
using UnityEngine;
public class StartManager : MonoBehaviour
{
public ProfileManager profileManager;
public SaveManager saveManager;
public LoadManager loadManager;
private void Start(){ if (profileManager …
i tried to do 3 separee profiles but i have json error now i have 4 separete scripts 1 for starting all 2cond for holding profiles 3rd and 4rth fore save load
1 more question i finished it but the issue i dont have multiple id profiles for my saving i made (i made it that player can pick 1 od 3 diffrent profiles name them and load save) saves loads work but only for autosafe profile rest when clicking loa…
almoust fixed still 1 error left while saving options ArgumentOutOfRangeException: StartIndex cannot be less than zero.
Parameter name: startIndex
System.Text.StringBuilder.Remove (System.Int32 startIndex, System.Int32 length) (at <467a840a914a47…
here;
using UnityEngine;
using Michsky.MUIP; // Namespace for Modern UI Pack
using System.Collections.Generic;
using AC; // Namespace for Adventure Creator
public class OptionsManager : MonoBehaviour
{
public CustomDropdown resolutionDropdown;…
the problem is i use modern ui pack thats based on ugui but little diffrent i have mostly problem with dropdown they look like this and i cannot move them to grephic options setup that is already made https://ibb.co/ykPYc28
i fixed if you want i can make tutorial later how to fix scene for ufps
1more question how can i make items from my AC inventory to be equipped and used by ufps charr ?