Reset Body Material


using UnityEngine;
using AdvancedPeopleSystem;

public class DemoScript : MonoBehaviour
{
    public CharacterCustomization character;

    private void Update()
    {
        if (Input.GetKeyDown(KeyCode.Q))
        {
            character.ResetBodyColors();
        }
    }
}

Press Q to reset body colors to default

Powered by BetterDocs