コード例 #1
0
 public static void SetCustomConfigHingesColour(this Chest chest, Color hingesColour)
 {
     chest.modData[$"{CustomChestConfig.CONST_MODDATA_PREFIX}/{CustomChestConfig.CONST_HINGES_KEY}"] = hingesColour.AsHexCode();
 }
コード例 #2
0
        // Public:
        #region Public

        public void SetColours(Color chestColour, Color hingesColour)
        {
            this.chestTextBox.Text  = chestColour.AsHexCode();
            this.hingesTextBox.Text = hingesColour.AsHexCode();
        }