@@ -12,11 +12,11 @@ public static unsafe partial class Raylib
1212
1313 public const int RAYLIB_VERSION_MAJOR = 5 ;
1414
15- public const int RAYLIB_VERSION_MINOR = 5 ;
15+ public const int RAYLIB_VERSION_MINOR = 6 ;
1616
1717 public const int RAYLIB_VERSION_PATCH = 0 ;
1818
19- public const string RAYLIB_VERSION = "5.5 " ;
19+ public const string RAYLIB_VERSION = "5.6-dev " ;
2020
2121 public const float PI = 3.14159265358979323846f ;
2222
@@ -599,7 +599,7 @@ public static unsafe partial class Raylib
599599 public static partial void SetShaderValueMatrix ( Shader shader , int locIndex , Matrix4x4 mat ) ;
600600
601601 /// <summary>
602- /// Set shader uniform value for texture (sampler2d)
602+ /// Set shader uniform value and bind the texture (sampler2d)
603603 /// </summary>
604604 [ LibraryImport ( LIBRARY , StringMarshalling = StringMarshalling . Utf8 ) ]
605605 [ UnmanagedCallConv ( CallConvs = [ typeof ( CallConvCdecl ) ] ) ]
@@ -1193,6 +1193,13 @@ public static unsafe partial class Raylib
11931193 [ UnmanagedCallConv ( CallConvs = [ typeof ( CallConvCdecl ) ] ) ]
11941194 public static partial int GetCharPressed ( ) ;
11951195
1196+ /// <summary>
1197+ /// Get name of a QWERTY key on the current keyboard layout (eg returns string 'q' for KEY_A on an AZERTY keyboard)
1198+ /// </summary>
1199+ [ LibraryImport ( LIBRARY , StringMarshalling = StringMarshalling . Utf8 ) ]
1200+ [ UnmanagedCallConv ( CallConvs = [ typeof ( CallConvCdecl ) ] ) ]
1201+ public static partial string GetKeyName ( int key ) ;
1202+
11961203 /// <summary>
11971204 /// Set a custom key to exit program (default is ESC)
11981205 /// </summary>
@@ -3084,14 +3091,14 @@ public static unsafe partial class Raylib
30843091 public static partial string TextToCamel ( string text ) ;
30853092
30863093 /// <summary>
3087- /// Get integer value from text (negative values not supported)
3094+ /// Get integer value from text
30883095 /// </summary>
30893096 [ LibraryImport ( LIBRARY , StringMarshalling = StringMarshalling . Utf8 ) ]
30903097 [ UnmanagedCallConv ( CallConvs = [ typeof ( CallConvCdecl ) ] ) ]
30913098 public static partial int TextToInteger ( string text ) ;
30923099
30933100 /// <summary>
3094- /// Get float value from text (negative values not supported)
3101+ /// Get float value from text
30953102 /// </summary>
30963103 [ LibraryImport ( LIBRARY , StringMarshalling = StringMarshalling . Utf8 ) ]
30973104 [ UnmanagedCallConv ( CallConvs = [ typeof ( CallConvCdecl ) ] ) ]
0 commit comments