mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Update project details and experimental libs
- Unsure on experimental lib at the moment. Need to test pinvoke overhead. Might move to examples repo. - Update README.md. - Update Raylib-cs.csproj. - Remove GenMeshDefault.
This commit is contained in:
parent
3224a58371
commit
094c4e7789
@ -12,9 +12,9 @@ namespace Physac_cs
|
||||
PHYSICS_POLYGON
|
||||
}
|
||||
|
||||
// Mat2 type (used for polygon shape rotation matrix)
|
||||
// Matrix2x2 type (used for polygon shape rotation matrix)
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Mat2
|
||||
public struct Matrix2x2
|
||||
{
|
||||
public float m00;
|
||||
public float m01;
|
||||
@ -64,45 +64,45 @@ namespace Physac_cs
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct PolygonData
|
||||
public struct PhysicsVertexData
|
||||
{
|
||||
public uint vertexCount; // Current used vertex and normals count
|
||||
public _Polygon_e_FixedBuffer positions; // Polygon vertex positions vectors
|
||||
public _Polygon_e_FixedBuffer normals; // Polygon vertex normals vectors
|
||||
public uint vertexCount; // Vertex count (positions and normals)
|
||||
public _Polygon_e_FixedBuffer positions; // Vertex positions vectors
|
||||
public _Polygon_e_FixedBuffer normals; // Vertex normals vectors
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct PhysicsShape
|
||||
{
|
||||
public PhysicsShapeType type; // Physics shape type (circle or polygon)
|
||||
public PhysicsShapeType type; // Shape type (circle or polygon)
|
||||
public IntPtr body; // Shape physics body reference
|
||||
public float radius; // Circle shape radius (used for circle shapes)
|
||||
public Mat2 transform; // Vertices transform matrix 2x2
|
||||
public PolygonData vertexData; // Polygon shape vertices position and normals data (just used for polygon shapes)
|
||||
public PhysicsVertexData vertexData; // Shape vertices data (used for polygon shapes)
|
||||
public float radius; // Shape radius (used for circle shapes)
|
||||
public Matrix2x2 transform; // Vertices transform matrix 2x2
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct PhysicsBodyData
|
||||
{
|
||||
public uint id;
|
||||
public byte enabled;
|
||||
public Vector2 position;
|
||||
public Vector2 velocity;
|
||||
public Vector2 force;
|
||||
public float angularVelocity;
|
||||
public float torque;
|
||||
public float orient;
|
||||
public float inertia;
|
||||
public float inverseInertia;
|
||||
public float mass;
|
||||
public float inverseMass;
|
||||
public float staticFriction;
|
||||
public float dynamicFriction;
|
||||
public float restitution;
|
||||
public byte useGravity;
|
||||
public byte isGrounded;
|
||||
public byte freezeOrient;
|
||||
public PhysicsShape shape;
|
||||
public uint id; // Unique identifier
|
||||
public byte enabled; // Enabled dynamics state (collisions are calculated anyway)
|
||||
public Vector2 position; // Physics body shape pivot
|
||||
public Vector2 velocity; // Current linear velocity applied to position
|
||||
public Vector2 force; // Current linear force (reset to 0 every step)
|
||||
public float angularVelocity; // Current angular velocity applied to orient
|
||||
public float torque; // Current angular force (reset to 0 every step)
|
||||
public float orient; // Rotation in radians
|
||||
public float inertia; // Moment of inertia
|
||||
public float inverseInertia; // Inverse value of inertia
|
||||
public float mass; // Physics body mass
|
||||
public float inverseMass; // Inverse value of mass
|
||||
public float staticFriction; // Friction when the body has not movement (0 to 1)
|
||||
public float dynamicFriction; // Friction when the body has movement (0 to 1)
|
||||
public float restitution; // Restitution coefficient of the body (0 to 1)
|
||||
public byte useGravity; // Apply gravity force to dynamics
|
||||
public byte isGrounded; // Physics grounded on other body state
|
||||
public byte freezeOrient; // Physics rotation constraint
|
||||
public PhysicsShape shape; // Physics body shape information (type, radius, vertices, transform)
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
@ -136,27 +136,35 @@ namespace Physac_cs
|
||||
public const float PHYSAC_PENETRATION_ALLOWANCE = 0.05f;
|
||||
public const float PHYSAC_PENETRATION_CORRECTION = 0.4f;
|
||||
|
||||
// Physics system management
|
||||
|
||||
// Initializes physics values, pointers and creates physics loop thread
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void InitPhysics();
|
||||
|
||||
// Run physics step, to be used if PHYSICS_NO_THREADS is set in your main loop
|
||||
// Update physics system
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void RunPhysicsStep();
|
||||
public static extern void UpdatePhysics();
|
||||
|
||||
// Reset physics system (global variables)
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ResetPhysics();
|
||||
|
||||
// Close physics system and unload used memory
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ClosePhysics();
|
||||
|
||||
// Sets physics fixed time step in milliseconds. 1.666666 by default
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void SetPhysicsTimeStep(double delta);
|
||||
|
||||
// Returns true if physics thread is currently enabled
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool IsPhysicsEnabled();
|
||||
|
||||
// Sets physics global gravity force
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void SetPhysicsGravity(float x, float y);
|
||||
|
||||
|
||||
// Physic body creation/destroy
|
||||
|
||||
// Creates a new circle physics body with generic parameters
|
||||
// IntPtr refers to a PhysicsBodyData *
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -172,6 +180,13 @@ namespace Physac_cs
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern IntPtr CreatePhysicsBodyPolygon(Vector2 pos, float radius, int sides, float density);
|
||||
|
||||
// Destroy a physics body
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DestroyPhysicsBody(PhysicsBodyData body);
|
||||
|
||||
|
||||
// Physic body forces
|
||||
|
||||
// Adds a force to a physics body
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void PhysicsAddForce(PhysicsBodyData body, Vector2 force);
|
||||
@ -184,15 +199,22 @@ namespace Physac_cs
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void PhysicsShatter(PhysicsBodyData body, Vector2 position, float force);
|
||||
|
||||
// Returns the current amount of created physics bodies
|
||||
// Sets physics body shape transform based on radians parameter
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GetPhysicsBodiesCount();
|
||||
public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians);
|
||||
|
||||
|
||||
// Query physics info
|
||||
|
||||
// Returns a physics body of the bodies pool at a specific index
|
||||
// IntPtr refers to a PhysicsBodyData *
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern IntPtr GetPhysicsBody(int index);
|
||||
|
||||
// Returns the current amount of created physics bodies
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GetPhysicsBodiesCount();
|
||||
|
||||
// Returns the physics body shape type (PHYSICS_CIRCLE or PHYSICS_POLYGON)
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GetPhysicsShapeType(int index);
|
||||
@ -204,21 +226,5 @@ namespace Physac_cs
|
||||
// Returns transformed position of a body shape (body position + vertex transformed position)
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern Vector2 GetPhysicsShapeVertex(PhysicsBodyData body, int vertex);
|
||||
|
||||
// Sets physics body shape transform based on radians parameter
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians);
|
||||
|
||||
// Unitializes and destroy a physics body
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DestroyPhysicsBody(PhysicsBodyData body);
|
||||
|
||||
// Destroys created physics bodies and manifolds and resets global values
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ResetPhysics();
|
||||
|
||||
// Unitializes physics pointers and closes physics loop thread
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void ClosePhysics();
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# Raylib-cs
|
||||
|
||||
C# bindings for raylib 3.5.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
||||
C# bindings for raylib 3.7.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
||||
|
||||
[](https://github.com/ChrisDill/Raylib-cs/graphs/contributors)
|
||||
[](LICENSE)
|
||||
@ -19,7 +19,7 @@ Raylib-cs targets netstandard2.1 and supports netcoreapp3.0+ and net5.0.
|
||||
This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues).
|
||||
|
||||
```
|
||||
dotnet add package Raylib-cs --version 3.5.0
|
||||
dotnet add package Raylib-cs --version 3.7.0
|
||||
```
|
||||
|
||||
[](https://www.nuget.org/packages/Raylib-cs/)
|
||||
@ -32,7 +32,7 @@ If you need to edit Raylib-cs source then you will need to add the bindings as a
|
||||
|
||||
2. Add Raylib-cs/Raylib-cs.csproj to your project as an existing project.
|
||||
|
||||
3. Download the native libraries for the platforms you want to build for using the [official 3.5.0 release](https://github.com/raysan5/raylib/releases/tag/3.5.0).
|
||||
3. Download the native libraries for the platforms you want to build for using the [official 3.7.0 release](https://github.com/raysan5/raylib/releases/tag/3.7.0).
|
||||
**NOTE: the MSVC version is required for Windows platforms**
|
||||
|
||||
4. **(Recommended)** Put the native library for each platform under `Raylib-cs/runtimes/{platform}/native/`
|
||||
|
@ -34,7 +34,7 @@ namespace Raygui_cs
|
||||
}
|
||||
|
||||
// Gui standard controls
|
||||
public enum GuiControlStandard
|
||||
public enum GuiControl
|
||||
{
|
||||
DEFAULT = 0,
|
||||
LABEL, // LABELBUTTON
|
||||
@ -185,7 +185,7 @@ namespace Raygui_cs
|
||||
// Used by DllImport to load the native library.
|
||||
public const string nativeLibName = "raygui";
|
||||
|
||||
public const string RAYGUI_VERSION = "2.6-dev";
|
||||
public const string RAYGUI_VERSION = "2.9-dev";
|
||||
|
||||
public const int NUM_CONTROLS = 16; // Number of standard controls
|
||||
public const int NUM_PROPS_DEFAULT = 16; // Number of standard properties
|
||||
@ -193,7 +193,7 @@ namespace Raygui_cs
|
||||
|
||||
public const int TEXTEDIT_CURSOR_BLINK_FRAMES = 20; // Text edit controls cursor blink timming
|
||||
|
||||
// Global gui modification functions
|
||||
// State modification functions
|
||||
|
||||
// Enable gui controls (global state)
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -223,6 +223,9 @@ namespace Raygui_cs
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GuiGetState();
|
||||
|
||||
|
||||
// Font set/get functions
|
||||
|
||||
// Get gui custom font (global state)
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiSetFont(Font font);
|
||||
@ -243,25 +246,6 @@ namespace Raygui_cs
|
||||
public static extern int GuiGetStyle(GuiControlStandard control, GuiControlProperty property);
|
||||
|
||||
|
||||
// Tooltips set functions
|
||||
|
||||
// Enable gui tooltips
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiEnableTooltip();
|
||||
|
||||
// Disable gui tooltips
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiDisableTooltip();
|
||||
|
||||
// Set current tooltip for display
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiSetTooltip(string tooltip);
|
||||
|
||||
// Clear any tooltip registered
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiClearTooltip();
|
||||
|
||||
|
||||
// Container/separator controls, useful for controls organization
|
||||
|
||||
// Window Box control, shows a window that can be closed
|
||||
@ -305,12 +289,12 @@ namespace Raygui_cs
|
||||
// Image button control, returns true when clicked
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool GuiImageButton(Rectangle bounds, Texture2D texture);
|
||||
public static extern bool GuiImageButton(Rectangle bounds, string text, Texture2D texture);
|
||||
|
||||
// Image button extended control, returns true when clicked
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool GuiImageButtonEx(Rectangle bounds, Texture2D texture, Rectangle texSource, string text);
|
||||
public static extern bool GuiImageButtonEx(Rectangle bounds, string text, Texture2D texture, Rectangle texSource);
|
||||
|
||||
// Toggle Button control, returns true when active
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -324,7 +308,7 @@ namespace Raygui_cs
|
||||
// Check Box control, returns true when active
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool GuiCheckBox(Rectangle bounds, bool isChecked);
|
||||
public static extern bool GuiCheckBox(Rectangle bounds, string text, bool isChecked);
|
||||
|
||||
// Combo Box control, returns selected item index
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -333,17 +317,17 @@ namespace Raygui_cs
|
||||
// Dropdown Box control, returns selected item
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool GuiDropdownBox(Rectangle bounds, string[] text, ref int active, bool edit);
|
||||
public static extern bool GuiDropdownBox(Rectangle bounds, string text, ref int active, bool editMode);
|
||||
|
||||
// Spinner control, returns selected value
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool GuiSpinner(Rectangle bounds, ref int value, int maxValue, int btnWidth);
|
||||
public static extern bool GuiSpinner(Rectangle bounds, string text, ref int value, int minValue, int maxValue, bool editMode);
|
||||
|
||||
// Value Box control, updates input text with numbers
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.I1)]
|
||||
public static extern bool GuiValueBox(Rectangle bounds, int value, int maxValue);
|
||||
public static extern bool GuiValueBox(Rectangle bounds, string text, ref int value, int minValue, int maxValue, bool editMode);
|
||||
|
||||
// Text Box control, updates input text
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -357,15 +341,15 @@ namespace Raygui_cs
|
||||
|
||||
// Slider control, returns selected value
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern float GuiSlider(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
|
||||
public static extern float GuiSlider(Rectangle bounds, string textLeft, string textRight, float value, float minValue, float maxValue);
|
||||
|
||||
// Slider Bar control, returns selected value
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
|
||||
public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue);
|
||||
|
||||
// Progress Bar control, shows current progress value
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
|
||||
public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue);
|
||||
|
||||
// Status Bar control, shows info text
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -377,30 +361,30 @@ namespace Raygui_cs
|
||||
|
||||
// Scroll Bar control
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue);
|
||||
public static extern int GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue);
|
||||
|
||||
// Grid
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiGrid(Rectangle bounds, float spacing, int subdivs);
|
||||
public static extern Vector2 GuiGrid(Rectangle bounds, float spacing, int subdivs);
|
||||
|
||||
|
||||
// Advance controls set
|
||||
|
||||
// List View control, returns selected list element index
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GuiListView(Rectangle bounds, string text, ref int active, ref int scrollIndex, bool editMode);
|
||||
public static extern int GuiListView(Rectangle bounds, string text, ref int scrollIndex, ref int active);
|
||||
|
||||
// List View with extended parameters
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GuiListViewEx(Rectangle bounds, string text, int count, ref int enabled, ref int active, ref int focus, ref int scrollIndex, bool editMode);
|
||||
public static extern int GuiListViewEx(Rectangle bounds, string text, int count, ref int focus, ref int scrollIndex, ref int active);
|
||||
|
||||
// Message Box control, displays a message
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GuiMessageBox(Rectangle bounds, string windowTitle, string message);
|
||||
public static extern int GuiMessageBox(Rectangle bounds, string title, string message);
|
||||
|
||||
// Text Input Box control, ask for text
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern int GuiTextInputBox(Rectangle bounds, string windowTitle, string message, string buttons);
|
||||
public static extern int GuiTextInputBox(Rectangle bounds, string windowTitle, string message, string buttons, string text);
|
||||
|
||||
// Color Picker control
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
@ -429,25 +413,26 @@ namespace Raygui_cs
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void GuiLoadStyleDefault();
|
||||
|
||||
// Get text with icon id prepended
|
||||
// Get the human-readable, UTF-8 encoded name of the primary monitor
|
||||
// Get text with icon id prepended (if supported)
|
||||
[DllImport(nativeLibName, EntryPoint = "GetMonitorName", CallingConvention = CallingConvention.Cdecl)]
|
||||
private static extern IntPtr INTERNAL_GuiIconText(int iconId, string text);
|
||||
public static string GuiIconText(int iconId, string text)
|
||||
{
|
||||
return Marshal.PtrToStringAnsi(INTERNAL_GuiIconText(iconId, text));
|
||||
return Marshal.PtrToStringUTF8(INTERNAL_GuiIconText(iconId, text));
|
||||
}
|
||||
|
||||
|
||||
// Gui icons functionality
|
||||
|
||||
// Get full icons data pointer
|
||||
// IntPtr refers to a unsigned int *
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern uint[] GuiGetIcons();
|
||||
public static extern IntPtr GuiGetIcons();
|
||||
|
||||
// Get icon bit data
|
||||
// IntPtr refers to a unsigned int *
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern uint[] GuiGetIconData(int iconId, string text);
|
||||
public static extern IntPtr GuiGetIconData(int iconId, string text);
|
||||
|
||||
// Set icon bit data
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
@ -9,15 +9,15 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<Version>3.5.0</Version>
|
||||
<PackageVersion>3.5.0</PackageVersion>
|
||||
<Version>3.7.0</Version>
|
||||
<PackageVersion>3.7.0</PackageVersion>
|
||||
<Authors>Chris Dill, Raysan5 & Others</Authors>
|
||||
<PackProject>true</PackProject>
|
||||
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
|
||||
<Title>Raylib-cs</Title>
|
||||
<Description>C# bindings for raylib - A simple and easy-to-use library to learn videogames programming</Description>
|
||||
<PackageIcon>raylib-cs_64x64.png</PackageIcon>
|
||||
<PackageTags>Raylib;Raysan;Games;Game-Engine;Engine;Game</PackageTags>
|
||||
<PackageTags>Raylib;Raysan;Gamedev;Binding</PackageTags>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl>
|
||||
<PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl>
|
||||
|
@ -2541,10 +2541,6 @@ namespace Raylib_cs
|
||||
|
||||
// Mesh generation functions
|
||||
|
||||
// Generate an empty mesh with vertex: position, texcoords, normals, colors
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern Mesh GenMeshDefault(int vertexCount);
|
||||
|
||||
// Generate polygonal mesh
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern Mesh GenMeshPoly(int sides, float radius);
|
||||
|
Loading…
x
Reference in New Issue
Block a user