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

LoadFontEx XML comment updated

This commit is contained in:
JupiterRider 2024-12-06 20:33:42 +01:00
commit 8719c30d1e
2 changed files with 6 additions and 3 deletions

View file

@ -935,7 +935,10 @@ public static unsafe partial class Raylib
return LoadFont(str1.AsPointer());
}
/// <summary>Load font from file with extended parameters</summary>
/// <summary>
/// Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load
/// the default character set, font size is provided in pixels height
/// </summary>
public static Font LoadFontEx(string fileName, int fontSize, int[] codepoints, int codepointCount)
{
using var str1 = fileName.ToAnsiBuffer();