Make stuff not public if it doesn't need to be
This commit is contained in:
@@ -13,35 +13,35 @@ using UnityEngine.UI;
|
||||
public class IconMarketplaceDownloadIcon : MonoBehaviour
|
||||
{
|
||||
private readonly static WaitForSeconds _waitForSeconds2 = new(2f);
|
||||
public IconMarketplaceManager marketplaceManager;
|
||||
public TMP_Text statusText;
|
||||
public TMP_Text balanceText;
|
||||
public Button backButton;
|
||||
[SerializeField] private IconMarketplaceManager marketplaceManager;
|
||||
[SerializeField] private TMP_Text statusText;
|
||||
[SerializeField] private TMP_Text balanceText;
|
||||
[SerializeField] private Button backButton;
|
||||
public GameObject content;
|
||||
public GameObject sample;
|
||||
[SerializeField] private GameObject sample;
|
||||
private string statusMessage;
|
||||
private Coroutine statusRoutine;
|
||||
public AudioSource iconPurchaseSound;
|
||||
public Button refreshButton;
|
||||
public Button optionsButton;
|
||||
public GameObject optionsPanel;
|
||||
public Button optionsPanelSubmitButton;
|
||||
public Button optionsPanelResetButton;
|
||||
[SerializeField] private Button refreshButton;
|
||||
[SerializeField] private Button optionsButton;
|
||||
[SerializeField] private GameObject optionsPanel;
|
||||
[SerializeField] private Button optionsPanelSubmitButton;
|
||||
[SerializeField] private Button optionsPanelResetButton;
|
||||
|
||||
public TMP_Dropdown optionsPanelSortByDropdown;
|
||||
|
||||
public Toggle optionsPanelPriceRangeToggle;
|
||||
public TMP_InputField optionsPanelPriceRangeMinInput;
|
||||
public TMP_InputField optionsPanelPriceRangeMaxInput;
|
||||
[SerializeField] private TMP_InputField optionsPanelPriceRangeMinInput;
|
||||
[SerializeField] private TMP_InputField optionsPanelPriceRangeMaxInput;
|
||||
internal string priceRangeMin = "10";
|
||||
internal string priceRangeMax = "250";
|
||||
|
||||
public Toggle optionsPanelSearchForToggle;
|
||||
public TMP_InputField optionsPanelSearchForInputField;
|
||||
[SerializeField] private TMP_InputField optionsPanelSearchForInputField;
|
||||
internal string searchForValue = "";
|
||||
|
||||
public Toggle optionsPanelOnlyShowToggle;
|
||||
public TMP_Dropdown optionsPanelOnlyShowDropdown;
|
||||
[SerializeField] private Toggle optionsPanelOnlyShowToggle;
|
||||
[SerializeField] private TMP_Dropdown optionsPanelOnlyShowDropdown;
|
||||
|
||||
internal bool anyChanges = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user