public  void setItemColor(int index, ColorF color){

pInvokes.m_ts.fnGuiListBoxCtrl_setItemColor(_ID, index, color.AsString());
}
public  void setLightColor(ColorF color){

pInvokes.m_ts.fnGuiObjectView_setLightColor(_ID, color.AsString());
}
Ejemplo n.º 3
0
/// <summary>
/// Return the integer character code value corresponding to the first character in the given string.
/// )
/// 
/// </summary>
public  ColorF dnt_testcase_4(ColorF chr){


return new ColorF ( m_ts.fn_dnt_testcase_4(chr.AsString()));
}
public  void setLightColor(ColorF color){

pInvokes.m_ts.fnGuiMaterialPreview_setLightColor(_ID, color.AsString());
}
Ejemplo n.º 5
0
/// <summary>
/// @brief Changes the color of the fog.
/// 	@params new_color the new fog color (rgb 0.0 - 1.0, a is ignored.)
/// 
/// </summary>
public  void SetFogColorF(string volumetricfog, ColorF new_color){


m_ts.fnVolumetricFog_SetFogColorF(volumetricfog, new_color.AsString());
}
Ejemplo n.º 6
0
/// <summary>
/// @brief Set the light color on the sun object used to render the model.   @param color Color of sunlight.   @tsexample   // Set the color value for the sun   %color = \"1.0 0.4 0.5\";   // Inform the GuiObjectView object to change the sun color to the defined value   %thisGuiObjectView.setLightColor(%color);   @endtsexample   @see GuiControl)
/// </summary>
public  void setLightColor(string guiobjectview, ColorF color){


m_ts.fnGuiObjectView_setLightColor(guiobjectview, color.AsString());
}
Ejemplo n.º 7
0
/// <summary>
/// Sets the color of the light in the scene.)
/// </summary>
public  void setLightColor(string guimaterialpreview, ColorF color){


m_ts.fnGuiMaterialPreview_setLightColor(guimaterialpreview, color.AsString());
}
Ejemplo n.º 8
0
/// <summary>
/// @brief Sets the color of a single list entry at the specified index id.   @param index Index id to modify the color of in the list.   @param color Color value to set the list entry to.   @tsexample   // Define the index id value   %index = \"5\";   // Define the color value   %color = \"1.0 0.0 0.0\";   // Inform the GuiListBoxCtrl object to change the color of the requested index   %thisGuiListBoxCtrl.setItemColor(%index,%color);   @endtsexample   @see GuiControl)
/// </summary>
public  void setItemColor(string guilistboxctrl, int index, ColorF color){


m_ts.fnGuiListBoxCtrl_setItemColor(guilistboxctrl, index, color.AsString());
}
public  void SetFogColorF(ColorF new_color){

pInvokes.m_ts.fnVolumetricFog_SetFogColorF(_ID, new_color.AsString());
}