/// <summary>
 /// @brief Create a new scheme and add it to the list of choices for when a new text entry is added.
 ///                    @param id Numerical id associated with this scheme
 ///                    @param fontColor The base text font color. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.
 ///                    @param fontColorHL Color of text when being highlighted. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.
 ///                    @param fontColorSel Color of text when being selected. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.)
 ///
 /// </summary>
 public void addScheme(int id, ColorI fontColor, ColorI fontColorHL, ColorI fontColorSEL)
 {
     TorqueScriptTemplate.m_ts.fnGuiPopUpMenuCtrlEx_addScheme(_mSimObjectId, id, fontColor.AsString(), fontColorHL.AsString(), fontColorSEL.AsString());
 }
 public void addScheme(int id, ColorI fontColor, ColorI fontColorHL, ColorI fontColorSEL)
 {
     pInvokes.m_ts.fnGuiPopUpMenuCtrlEx_addScheme(_ID, id, fontColor.AsString(), fontColorHL.AsString(), fontColorSEL.AsString());
 }
 public void SetFogColor(ColorI new_color)
 {
     pInvokes.m_ts.fnVolumetricFog_SetFogColor(_ID, new_color.AsString());
 }