From b6cf094a3464f2f855148b708d175bd795fe89d4 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sat, 10 Apr 2021 23:43:32 +0100 Subject: [PATCH] Minor bugfixes - Fix issue with github actions randomly failing on windows. - Remove default arguments from Camera3D constructor. - GetGamepadName was using Ansi when it should of been UTF8. - Fix issue where charsPadding was not public. --- Raylib-cs/Raylib.cs | 6 +++--- nuget.config | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100755 nuget.config diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 670412d..3bb1b72 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -145,7 +145,7 @@ namespace Raylib_cs { public int baseSize; // Base size (default chars height) public int charsCount; // Number of characters - int charsPadding; // Padding around the chars + public int charsPadding; // Padding around the chars public Texture2D texture; // Characters texture atals public IntPtr recs; // Characters rectangles in texture (Rectangle *) public IntPtr chars; // Characters info data (CharInfo *) @@ -161,7 +161,7 @@ namespace Raylib_cs public float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic public CameraType type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC - public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy = 90, CameraType type = CameraType.CAMERA_PERSPECTIVE) + public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy, CameraType type) { this.position = position; this.target = target; @@ -1296,7 +1296,7 @@ namespace Raylib_cs private static extern IntPtr INTERNAL_GetGamepadName(GamepadNumber gamepad); public static string GetGamepadName(GamepadNumber gamepad) { - return Marshal.PtrToStringAnsi(INTERNAL_GetGamepadName(gamepad)); + return Marshal.PtrToStringUTF8(INTERNAL_GetGamepadName(gamepad)); } // Detect if a gamepad button has been pressed once diff --git a/nuget.config b/nuget.config new file mode 100755 index 0000000..54e660f --- /dev/null +++ b/nuget.config @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file