raylib-d 3.0.3
D binding for Raylib
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
raylib-d
(static) D bindings for raylib, a simple and easy-to-use library to learn videogames programming.
Installation
dub add raylib-d
First, get a copy of Raylib
You can get the library by compiling it from the source, download the official precompiled binaries or download them from our repository (originally taken from official releases, sorted in folders for each system).
In order to link against raylib, add it to your dub.json.
"libs": [ "raylib" ]
For more information look into the wiki.
Sample
import raylib;
void main()
{
InitWindow(800, 600, "Hello, Raylib-D!");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Hello, World!", 400, 300, 28, BLACK);
EndDrawing();
}
CloseWindow();
}
Docs / cheatsheet
License
raylib-d is licensed under an unmodified zlib/libpng license. View LICENSE.
- Registered by Steven Schveighoffer
- 3.0.3 released 4 years ago
- schveiguy/raylib-d
- Zlib
- Copyright (c) Ramon Santamaria (@raysan5), Petro Romanovych (@onroundit), Jan Hoenig (@m3m0ry)
- Authors:
- Dependencies:
- none
- Versions:
-
5.5.1 2024-Nov-21 5.5.0 2024-Nov-18 5.0.1 2024-Jan-29 5.0.0 2023-Nov-21 4.5.2 2023-Oct-02 - Download Stats:
-
-
3 downloads today
-
161 downloads this week
-
541 downloads this month
-
4466 downloads total
-
- Score:
- 4.2
- Short URL:
- raylib-d.dub.pm