Watch
2
0
Fork
You've already forked raylib-cs
0

More XmlDoc comments

This commit is contained in:
Rgebee 2021-11-11 12:00:42 +00:00
commit f9e39d3226
8 changed files with 63 additions and 27 deletions

View file

@ -3,21 +3,23 @@ using System.Runtime.InteropServices;
namespace Raylib_cs
{
/// <summary>Material map index</summary>
/// <summary>
/// Material map index
/// </summary>
public enum MaterialMapIndex
{
/// <summary>
/// MAP_DIFFUSE
/// NOTE: Same as MATERIAL_MAP_DIFFUSE
/// </summary>
MATERIAL_MAP_ALBEDO = 0,
/// <summary>
/// MAP_SPECULAR
/// NOTE: Same as MATERIAL_MAP_SPECULAR
/// </summary>
MATERIAL_MAP_METALNESS = 1,
MATERIAL_MAP_METALNESS,
MATERIAL_MAP_NORMAL = 2,
MATERIAL_MAP_ROUGHNESS = 3,
MATERIAL_MAP_NORMAL,
MATERIAL_MAP_ROUGHNESS,
MATERIAL_MAP_OCCLUSION,
MATERIAL_MAP_EMISSION,
MATERIAL_MAP_HEIGHT,