GameParameters.InitializeColorProportion - notruilin/DeceptionGame GitHub Wiki

private void InitializeColorProportion();

Description

Edit this function to initialize the proportions of each colored counter in the generators. Keep empty if you don't need to customize.

    private void InitializeColorProportion()
    {
        colorBag.Clear();
        // Initialize the proportions of each colored counter in the generators here
        // Keep empty if you don't need to customize
        // Example : 100% red, 0% yellow and 0% blue
        // Your code BEGINS HERE

        SetColorProportion(100, 0, 0);

        // Your code ENDS HERE
    }