raylib-bindings 0.7.15 → 0.7.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog +12 -0
- data/LICENSE.txt +1 -1
- data/README.md +7 -6
- data/lib/config.rb +4 -5
- data/lib/libraylib.aarch64.so +0 -0
- data/lib/libraylib.arm64.dylib +0 -0
- data/lib/libraylib.dll +0 -0
- data/lib/libraylib.x86_64.dylib +0 -0
- data/lib/libraylib.x86_64.so +0 -0
- data/lib/physac.dll +0 -0
- data/lib/raygui.aarch64.so +0 -0
- data/lib/raygui.arm64.dylib +0 -0
- data/lib/raygui.dll +0 -0
- data/lib/raygui.x86_64.dylib +0 -0
- data/lib/raygui.x86_64.so +0 -0
- data/lib/raygui_main.rb +16 -37
- data/lib/raylib_main.rb +43 -43
- data/lib/raymath.rb +8 -0
- data/lib/rlgl.rb +18 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca786d8fe1a56b5c32f4f38611b3b205eb2e1fb7e0bfd74dabdde040b291f5c5
|
|
4
|
+
data.tar.gz: 32a8a576686d5d445982cb80f252150f15c1d01f480ae45085e783caa623a64e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ee70ee01b06b69e5a0a1da6bf31831722d66faf9a9e4fe1fb660506fee120d30fc956f2b4846f4e4c0cc082eee151f23ac9238896c1e78477795394e440322f
|
|
7
|
+
data.tar.gz: 39c132a207299b9aad7d5ecfdf210f86cc52c4b1eb93684eba7dc9be0242602146ef24b2789293d48b69af19ad9de9f4fe4d5e745917e4061adbfe6984e7f9e1
|
data/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
2026-01-10 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
|
+
|
|
3
|
+
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/f2c8a9c085c26c0a7a0b5bf7d6e69a56618bd964 ) and raygui ( https://github.com/raysan5/raygui/commit/51e6bcb39346b3e363643f95c3532119af41f6fd )
|
|
4
|
+
|
|
5
|
+
2025-12-28 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
6
|
+
|
|
7
|
+
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/05f5143603ba4db9b3157e981926a42c55c4c766 ) and raygui ( https://github.com/raysan5/raygui/commit/0b94b80c92c34c79f8d902f51f68dfc1edacf51b )
|
|
8
|
+
|
|
9
|
+
2025-11-18 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
10
|
+
|
|
11
|
+
* examples/particles_fireworks.rb : Added
|
|
12
|
+
|
|
1
13
|
2025-10-26 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
14
|
|
|
3
15
|
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/a818508158119f74e99b4dc98345c28ce112733c ) and raygui ( https://github.com/raysan5/raygui/commit/b9971133b2f7b7513904770d565b683a93fb3624 )
|
data/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Ruby-raylib : Yet another raylib wrapper for Ruby
|
|
2
|
-
Copyright (c) 2021-
|
|
2
|
+
Copyright (c) 2021-2026 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
3
3
|
|
|
4
4
|
This software is provided 'as-is', without any express or implied
|
|
5
5
|
warranty. In no event will the authors be held liable for any damages
|
data/README.md
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
# Yet another raylib wrapper for Ruby #
|
|
4
4
|
|
|
5
5
|
* Created : 2021-10-17
|
|
6
|
-
* Last modified :
|
|
6
|
+
* Last modified : 2026-01-10
|
|
7
7
|
|
|
8
8
|
Provides Ruby bindings for raylib-related libraries including:
|
|
9
9
|
|
|
10
|
-
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/
|
|
10
|
+
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/f2c8a9c085c26c0a7a0b5bf7d6e69a56618bd964 )
|
|
11
11
|
* raylib
|
|
12
12
|
* raymath
|
|
13
13
|
* rlgl
|
|
14
|
-
* [raygui](https://github.com/raysan5/raygui) version [5.0-dev]( https://github.com/raysan5/raygui/commit/
|
|
14
|
+
* [raygui](https://github.com/raysan5/raygui) version [5.0-dev]( https://github.com/raysan5/raygui/commit/51e6bcb39346b3e363643f95c3532119af41f6fd )
|
|
15
15
|
* [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
|
|
16
16
|
|
|
17
17
|
<img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
|
|
@@ -50,7 +50,7 @@ D:\> ruby template.rb
|
|
|
50
50
|
* [macOS] https://rvm.io
|
|
51
51
|
* ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [arm64-darwin24]
|
|
52
52
|
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
|
53
|
-
* ruby
|
|
53
|
+
* ruby 4.0.0 (2025-12-25 revision 553f1675f3) +PRISM [x64-mingw-ucrt]
|
|
54
54
|
* [Linux/x86_64 WSL] https://github.com/rvm/ubuntu_rvm
|
|
55
55
|
* ruby 3.4.0dev (2024-12-25 master f450108330) +PRISM [x86_64-linux]
|
|
56
56
|
* [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
|
|
@@ -70,7 +70,7 @@ D:\> ruby template.rb
|
|
|
70
70
|
|
|
71
71
|
* [Windows] gcc
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
gcc (Rev8, Built by MSYS2 project) 15.2.0
|
|
74
74
|
|
|
75
75
|
* [Linux] gcc, clang
|
|
76
76
|
|
|
@@ -91,6 +91,7 @@ D:\> ruby template.rb
|
|
|
91
91
|
* ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [arm64-darwin20]
|
|
92
92
|
* ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
|
|
93
93
|
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
|
94
|
+
* ruby 3.4.7 (2025-10-08 revision 7a5688e2a2) +PRISM [x64-mingw-ucrt]
|
|
94
95
|
* ruby 3.4.4 (2025-05-14 revision a38531fd3f) +PRISM [x64-mingw-ucrt]
|
|
95
96
|
* ruby 3.4.2 (2025-02-15 revision d2930f8e7a) +PRISM [x64-mingw-ucrt]
|
|
96
97
|
* ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x64-mingw-ucrt]
|
|
@@ -201,7 +202,7 @@ Shared libraries in `lib` directory are built on top of these products and are a
|
|
|
201
202
|
All ruby codes here are available under the terms of the zlib/libpng License ( http://opensource.org/licenses/Zlib ).
|
|
202
203
|
|
|
203
204
|
Ruby-raylib : Yet another raylib wrapper for Ruby
|
|
204
|
-
Copyright (c) 2021-
|
|
205
|
+
Copyright (c) 2021-2026 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
205
206
|
|
|
206
207
|
This software is provided 'as-is', without any express or implied
|
|
207
208
|
warranty. In no event will the authors be held liable for any damages
|
data/lib/config.rb
CHANGED
|
@@ -16,6 +16,8 @@ module Raylib
|
|
|
16
16
|
SUPPORT_MODULE_RTEXT = 1 # WARNING: It requires SUPPORT_MODULE_RTEXTURES to load sprite font textures
|
|
17
17
|
SUPPORT_MODULE_RMODELS = 1
|
|
18
18
|
SUPPORT_MODULE_RAUDIO = 1
|
|
19
|
+
SUPPORT_STANDARD_FILEIO = 1
|
|
20
|
+
SUPPORT_TRACELOG = 1
|
|
19
21
|
SUPPORT_CAMERA_SYSTEM = 1
|
|
20
22
|
SUPPORT_GESTURES_SYSTEM = 1
|
|
21
23
|
SUPPORT_RPRAND_GENERATOR = 1
|
|
@@ -24,13 +26,13 @@ module Raylib
|
|
|
24
26
|
SUPPORT_WINMM_HIGHRES_TIMER = 1
|
|
25
27
|
SUPPORT_PARTIALBUSY_WAIT_LOOP = 1
|
|
26
28
|
SUPPORT_SCREEN_CAPTURE = 1
|
|
27
|
-
SUPPORT_GIF_RECORDING = 1
|
|
28
29
|
SUPPORT_COMPRESSION_API = 1
|
|
29
30
|
SUPPORT_AUTOMATION_EVENTS = 1
|
|
30
31
|
SUPPORT_CLIPBOARD_IMAGE = 1
|
|
31
32
|
SUPPORT_FILEFORMAT_BMP = 1
|
|
32
33
|
SUPPORT_FILEFORMAT_PNG = 1
|
|
33
34
|
SUPPORT_FILEFORMAT_JPG = 1
|
|
35
|
+
MAX_TRACELOG_MSG_LENGTH = 256 # Max length of one trace-log message
|
|
34
36
|
MAX_FILEPATH_CAPACITY = 8192 # Maximum file paths capacity
|
|
35
37
|
MAX_FILEPATH_LENGTH = 4096 # Maximum length for filepaths (Linux PATH_MAX default value)
|
|
36
38
|
MAX_KEYBOARD_KEYS = 512 # Maximum number of keyboard keys supported
|
|
@@ -39,7 +41,7 @@ module Raylib
|
|
|
39
41
|
MAX_GAMEPAD_AXES = 8 # Maximum number of axes supported (per gamepad)
|
|
40
42
|
MAX_GAMEPAD_BUTTONS = 32 # Maximum number of buttons supported (per gamepad)
|
|
41
43
|
MAX_GAMEPAD_VIBRATION_TIME = 2.0 # Maximum vibration time in seconds
|
|
42
|
-
MAX_TOUCH_POINTS =
|
|
44
|
+
MAX_TOUCH_POINTS = 10 # Maximum number of touch points supported
|
|
43
45
|
MAX_KEY_PRESSED_QUEUE = 16 # Maximum number of keys in the key input queue
|
|
44
46
|
MAX_CHAR_PRESSED_QUEUE = 16 # Maximum number of characters in the char input queue
|
|
45
47
|
MAX_DECOMPRESSION_SIZE = 64 # Max size allocated for decompression in MB
|
|
@@ -110,8 +112,5 @@ module Raylib
|
|
|
110
112
|
AUDIO_DEVICE_CHANNELS = 2 # Device output channels: stereo
|
|
111
113
|
AUDIO_DEVICE_SAMPLE_RATE = 0 # Device sample rate (device default)
|
|
112
114
|
MAX_AUDIO_BUFFER_POOL_CHANNELS = 16 # Maximum number of audio pool channels
|
|
113
|
-
SUPPORT_STANDARD_FILEIO = 1
|
|
114
|
-
SUPPORT_TRACELOG = 1
|
|
115
|
-
MAX_TRACELOG_MSG_LENGTH = 256 # Max length of one trace-log message
|
|
116
115
|
|
|
117
116
|
end
|
data/lib/libraylib.aarch64.so
CHANGED
|
Binary file
|
data/lib/libraylib.arm64.dylib
CHANGED
|
Binary file
|
data/lib/libraylib.dll
CHANGED
|
Binary file
|
data/lib/libraylib.x86_64.dylib
CHANGED
|
Binary file
|
data/lib/libraylib.x86_64.so
CHANGED
|
Binary file
|
data/lib/physac.dll
CHANGED
|
Binary file
|
data/lib/raygui.aarch64.so
CHANGED
|
Binary file
|
data/lib/raygui.arm64.dylib
CHANGED
|
Binary file
|
data/lib/raygui.dll
CHANGED
|
Binary file
|
data/lib/raygui.x86_64.dylib
CHANGED
|
Binary file
|
data/lib/raygui.x86_64.so
CHANGED
|
Binary file
|
data/lib/raygui_main.rb
CHANGED
|
@@ -392,22 +392,22 @@ module Raylib
|
|
|
392
392
|
ICON_SLICING = 231
|
|
393
393
|
ICON_MANUAL_CONTROL = 232
|
|
394
394
|
ICON_COLLISION = 233
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
395
|
+
ICON_CIRCLE_ADD = 234
|
|
396
|
+
ICON_CIRCLE_ADD_FILL = 235
|
|
397
|
+
ICON_CIRCLE_WARNING = 236
|
|
398
|
+
ICON_CIRCLE_WARNING_FILL = 237
|
|
399
|
+
ICON_BOX_MORE = 238
|
|
400
|
+
ICON_BOX_MORE_FILL = 239
|
|
401
|
+
ICON_BOX_MINUS = 240
|
|
402
|
+
ICON_BOX_MINUS_FILL = 241
|
|
403
|
+
ICON_UNION = 242
|
|
404
|
+
ICON_INTERSECTION = 243
|
|
405
|
+
ICON_DIFFERENCE = 244
|
|
406
|
+
ICON_SPHERE = 245
|
|
407
|
+
ICON_CYLINDER = 246
|
|
408
|
+
ICON_CONE = 247
|
|
409
|
+
ICON_ELLIPSOID = 248
|
|
410
|
+
ICON_CAPSULE = 249
|
|
411
411
|
ICON_250 = 250
|
|
412
412
|
ICON_251 = 251
|
|
413
413
|
ICON_252 = 252
|
|
@@ -440,27 +440,6 @@ module Raylib
|
|
|
440
440
|
|
|
441
441
|
# Struct
|
|
442
442
|
|
|
443
|
-
# It should be redesigned to be provided by user
|
|
444
|
-
class Texture < FFI::Struct
|
|
445
|
-
layout(
|
|
446
|
-
:id, :uint, # OpenGL texture id
|
|
447
|
-
:width, :int, # Texture base width
|
|
448
|
-
:height, :int, # Texture base height
|
|
449
|
-
:mipmaps, :int, # Mipmap levels, 1 by default
|
|
450
|
-
:format, :int, # Data format (PixelFormat type)
|
|
451
|
-
)
|
|
452
|
-
def id = self[:id]
|
|
453
|
-
def id=(v) self[:id] = v end
|
|
454
|
-
def width = self[:width]
|
|
455
|
-
def width=(v) self[:width] = v end
|
|
456
|
-
def height = self[:height]
|
|
457
|
-
def height=(v) self[:height] = v end
|
|
458
|
-
def mipmaps = self[:mipmaps]
|
|
459
|
-
def mipmaps=(v) self[:mipmaps] = v end
|
|
460
|
-
def format = self[:format]
|
|
461
|
-
def format=(v) self[:format] = v end
|
|
462
|
-
end
|
|
463
|
-
|
|
464
443
|
# NOTE: Used when exporting style as code for convenience
|
|
465
444
|
class GuiStyleProp < FFI::Struct
|
|
466
445
|
layout(
|
data/lib/raylib_main.rb
CHANGED
|
@@ -713,10 +713,10 @@ module Raylib
|
|
|
713
713
|
# Camera2D, defines position/orientation in 2d space
|
|
714
714
|
class Camera2D < FFI::Struct
|
|
715
715
|
layout(
|
|
716
|
-
:offset, Vector2, # Camera offset (
|
|
717
|
-
:target, Vector2, # Camera target (
|
|
718
|
-
:rotation, :float, # Camera rotation in degrees
|
|
719
|
-
:zoom, :float, # Camera zoom (scaling),
|
|
716
|
+
:offset, Vector2, # Camera offset (screen space offset from window origin)
|
|
717
|
+
:target, Vector2, # Camera target (world space target point that is mapped to screen space offset)
|
|
718
|
+
:rotation, :float, # Camera rotation in degrees (pivots around target)
|
|
719
|
+
:zoom, :float, # Camera zoom (scaling around target), must not be set to 0, set to 1.0f for no scale
|
|
720
720
|
)
|
|
721
721
|
def offset = self[:offset]
|
|
722
722
|
def offset=(v) self[:offset] = v end
|
|
@@ -1765,6 +1765,12 @@ module Raylib
|
|
|
1765
1765
|
# @return [void]
|
|
1766
1766
|
[:OpenURL, :OpenURL, [:pointer], :void],
|
|
1767
1767
|
|
|
1768
|
+
# @!method SetTraceLogLevel(logLevel)
|
|
1769
|
+
# SetTraceLogLevel : Set the current threshold (minimum) log level
|
|
1770
|
+
# @param logLevel [int]
|
|
1771
|
+
# @return [void]
|
|
1772
|
+
[:SetTraceLogLevel, :SetTraceLogLevel, [:int], :void],
|
|
1773
|
+
|
|
1768
1774
|
# @!method TraceLog(logLevel, text, ...)
|
|
1769
1775
|
# TraceLog : Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR...)
|
|
1770
1776
|
# @param logLevel [int]
|
|
@@ -1773,11 +1779,11 @@ module Raylib
|
|
|
1773
1779
|
# @return [void]
|
|
1774
1780
|
[:TraceLog, :TraceLog, [:int, :pointer, :varargs], :void],
|
|
1775
1781
|
|
|
1776
|
-
# @!method
|
|
1777
|
-
#
|
|
1778
|
-
# @param
|
|
1782
|
+
# @!method SetTraceLogCallback(callback)
|
|
1783
|
+
# SetTraceLogCallback : Set custom trace log
|
|
1784
|
+
# @param callback [TraceLogCallback]
|
|
1779
1785
|
# @return [void]
|
|
1780
|
-
[:
|
|
1786
|
+
[:SetTraceLogCallback, :SetTraceLogCallback, [:TraceLogCallback], :void],
|
|
1781
1787
|
|
|
1782
1788
|
# @!method MemAlloc(size)
|
|
1783
1789
|
# MemAlloc : Internal memory allocator
|
|
@@ -1798,36 +1804,6 @@ module Raylib
|
|
|
1798
1804
|
# @return [void]
|
|
1799
1805
|
[:MemFree, :MemFree, [:pointer], :void],
|
|
1800
1806
|
|
|
1801
|
-
# @!method SetTraceLogCallback(callback)
|
|
1802
|
-
# SetTraceLogCallback : Set custom trace log
|
|
1803
|
-
# @param callback [TraceLogCallback]
|
|
1804
|
-
# @return [void]
|
|
1805
|
-
[:SetTraceLogCallback, :SetTraceLogCallback, [:TraceLogCallback], :void],
|
|
1806
|
-
|
|
1807
|
-
# @!method SetLoadFileDataCallback(callback)
|
|
1808
|
-
# SetLoadFileDataCallback : Set custom file binary data loader
|
|
1809
|
-
# @param callback [LoadFileDataCallback]
|
|
1810
|
-
# @return [void]
|
|
1811
|
-
[:SetLoadFileDataCallback, :SetLoadFileDataCallback, [:LoadFileDataCallback], :void],
|
|
1812
|
-
|
|
1813
|
-
# @!method SetSaveFileDataCallback(callback)
|
|
1814
|
-
# SetSaveFileDataCallback : Set custom file binary data saver
|
|
1815
|
-
# @param callback [SaveFileDataCallback]
|
|
1816
|
-
# @return [void]
|
|
1817
|
-
[:SetSaveFileDataCallback, :SetSaveFileDataCallback, [:SaveFileDataCallback], :void],
|
|
1818
|
-
|
|
1819
|
-
# @!method SetLoadFileTextCallback(callback)
|
|
1820
|
-
# SetLoadFileTextCallback : Set custom file text data loader
|
|
1821
|
-
# @param callback [LoadFileTextCallback]
|
|
1822
|
-
# @return [void]
|
|
1823
|
-
[:SetLoadFileTextCallback, :SetLoadFileTextCallback, [:LoadFileTextCallback], :void],
|
|
1824
|
-
|
|
1825
|
-
# @!method SetSaveFileTextCallback(callback)
|
|
1826
|
-
# SetSaveFileTextCallback : Set custom file text data saver
|
|
1827
|
-
# @param callback [SaveFileTextCallback]
|
|
1828
|
-
# @return [void]
|
|
1829
|
-
[:SetSaveFileTextCallback, :SetSaveFileTextCallback, [:SaveFileTextCallback], :void],
|
|
1830
|
-
|
|
1831
1807
|
# @!method LoadFileData(fileName, dataSize)
|
|
1832
1808
|
# LoadFileData : Load file data as byte array (read)
|
|
1833
1809
|
# @param fileName [const char *]
|
|
@@ -1876,6 +1852,30 @@ module Raylib
|
|
|
1876
1852
|
# @return [bool]
|
|
1877
1853
|
[:SaveFileText, :SaveFileText, [:pointer, :pointer], :bool],
|
|
1878
1854
|
|
|
1855
|
+
# @!method SetLoadFileDataCallback(callback)
|
|
1856
|
+
# SetLoadFileDataCallback : Set custom file binary data loader
|
|
1857
|
+
# @param callback [LoadFileDataCallback]
|
|
1858
|
+
# @return [void]
|
|
1859
|
+
[:SetLoadFileDataCallback, :SetLoadFileDataCallback, [:LoadFileDataCallback], :void],
|
|
1860
|
+
|
|
1861
|
+
# @!method SetSaveFileDataCallback(callback)
|
|
1862
|
+
# SetSaveFileDataCallback : Set custom file binary data saver
|
|
1863
|
+
# @param callback [SaveFileDataCallback]
|
|
1864
|
+
# @return [void]
|
|
1865
|
+
[:SetSaveFileDataCallback, :SetSaveFileDataCallback, [:SaveFileDataCallback], :void],
|
|
1866
|
+
|
|
1867
|
+
# @!method SetLoadFileTextCallback(callback)
|
|
1868
|
+
# SetLoadFileTextCallback : Set custom file text data loader
|
|
1869
|
+
# @param callback [LoadFileTextCallback]
|
|
1870
|
+
# @return [void]
|
|
1871
|
+
[:SetLoadFileTextCallback, :SetLoadFileTextCallback, [:LoadFileTextCallback], :void],
|
|
1872
|
+
|
|
1873
|
+
# @!method SetSaveFileTextCallback(callback)
|
|
1874
|
+
# SetSaveFileTextCallback : Set custom file text data saver
|
|
1875
|
+
# @param callback [SaveFileTextCallback]
|
|
1876
|
+
# @return [void]
|
|
1877
|
+
[:SetSaveFileTextCallback, :SetSaveFileTextCallback, [:SaveFileTextCallback], :void],
|
|
1878
|
+
|
|
1879
1879
|
# @!method FileRename(fileName, fileRename)
|
|
1880
1880
|
# FileRename : Rename file (if exists)
|
|
1881
1881
|
# @param fileName [const char *]
|
|
@@ -1995,9 +1995,9 @@ module Raylib
|
|
|
1995
1995
|
# @return [int]
|
|
1996
1996
|
[:MakeDirectory, :MakeDirectory, [:pointer], :int],
|
|
1997
1997
|
|
|
1998
|
-
# @!method ChangeDirectory(
|
|
1998
|
+
# @!method ChangeDirectory(dirPath)
|
|
1999
1999
|
# ChangeDirectory : Change working directory, return true on success
|
|
2000
|
-
# @param
|
|
2000
|
+
# @param dirPath [const char *]
|
|
2001
2001
|
# @return [bool]
|
|
2002
2002
|
[:ChangeDirectory, :ChangeDirectory, [:pointer], :bool],
|
|
2003
2003
|
|
|
@@ -5087,7 +5087,7 @@ module Raylib
|
|
|
5087
5087
|
[:IsSoundValid, :IsSoundValid, [Sound.by_value], :bool],
|
|
5088
5088
|
|
|
5089
5089
|
# @!method UpdateSound(sound, data, sampleCount)
|
|
5090
|
-
# UpdateSound : Update sound buffer with new data (data
|
|
5090
|
+
# UpdateSound : Update sound buffer with new data (default data format: 32 bit float, stereo)
|
|
5091
5091
|
# @param sound [Sound]
|
|
5092
5092
|
# @param data [const void *]
|
|
5093
5093
|
# @param sampleCount [int]
|
|
@@ -5171,7 +5171,7 @@ module Raylib
|
|
|
5171
5171
|
[:SetSoundPitch, :SetSoundPitch, [Sound.by_value, :float], :void],
|
|
5172
5172
|
|
|
5173
5173
|
# @!method SetSoundPan(sound, pan)
|
|
5174
|
-
# SetSoundPan : Set pan for a sound (0.
|
|
5174
|
+
# SetSoundPan : Set pan for a sound (-1.0 left, 0.0 center, 1.0 right)
|
|
5175
5175
|
# @param sound [Sound]
|
|
5176
5176
|
# @param pan [float]
|
|
5177
5177
|
# @return [void]
|
|
@@ -5296,7 +5296,7 @@ module Raylib
|
|
|
5296
5296
|
[:SetMusicPitch, :SetMusicPitch, [Music.by_value, :float], :void],
|
|
5297
5297
|
|
|
5298
5298
|
# @!method SetMusicPan(music, pan)
|
|
5299
|
-
# SetMusicPan : Set pan for a music (0.
|
|
5299
|
+
# SetMusicPan : Set pan for a music (-1.0 left, 0.0 center, 1.0 right)
|
|
5300
5300
|
# @param music [Music]
|
|
5301
5301
|
# @param pan [float]
|
|
5302
5302
|
# @return [void]
|
data/lib/raymath.rb
CHANGED
|
@@ -1040,6 +1040,14 @@ module Raylib
|
|
|
1040
1040
|
# @return [int]
|
|
1041
1041
|
[:QuaternionEquals, :QuaternionEquals, [Quaternion.by_value, Quaternion.by_value], :int],
|
|
1042
1042
|
|
|
1043
|
+
# @!method MatrixCompose(translation, rotation, scale)
|
|
1044
|
+
# MatrixCompose
|
|
1045
|
+
# @param translation [Vector3]
|
|
1046
|
+
# @param rotation [Quaternion]
|
|
1047
|
+
# @param scale [Vector3]
|
|
1048
|
+
# @return [Matrix]
|
|
1049
|
+
[:MatrixCompose, :MatrixCompose, [Vector3.by_value, Quaternion.by_value, Vector3.by_value], Matrix.by_value],
|
|
1050
|
+
|
|
1043
1051
|
# @!method MatrixDecompose(mat, translation, rotation, scale)
|
|
1044
1052
|
# MatrixDecompose
|
|
1045
1053
|
# @param mat [Matrix]
|
data/lib/rlgl.rb
CHANGED
|
@@ -1172,6 +1172,24 @@ module Raylib
|
|
|
1172
1172
|
# @return [void]
|
|
1173
1173
|
[:rlUnloadFramebuffer, :rlUnloadFramebuffer, [:uint], :void],
|
|
1174
1174
|
|
|
1175
|
+
# @!method rlCopyFramebuffer(x, y, width, height, format, pixels)
|
|
1176
|
+
# rlCopyFramebuffer : Copy framebuffer pixel data to internal buffer
|
|
1177
|
+
# @param x [int]
|
|
1178
|
+
# @param y [int]
|
|
1179
|
+
# @param width [int]
|
|
1180
|
+
# @param height [int]
|
|
1181
|
+
# @param format [int]
|
|
1182
|
+
# @param pixels [void *]
|
|
1183
|
+
# @return [void]
|
|
1184
|
+
[:rlCopyFramebuffer, :rlCopyFramebuffer, [:int, :int, :int, :int, :int, :pointer], :void],
|
|
1185
|
+
|
|
1186
|
+
# @!method rlResizeFramebuffer(width, height)
|
|
1187
|
+
# rlResizeFramebuffer : Resize internal framebuffer
|
|
1188
|
+
# @param width [int]
|
|
1189
|
+
# @param height [int]
|
|
1190
|
+
# @return [void]
|
|
1191
|
+
[:rlResizeFramebuffer, :rlResizeFramebuffer, [:int, :int], :void],
|
|
1192
|
+
|
|
1175
1193
|
# @!method rlLoadShaderCode(vsCode, fsCode)
|
|
1176
1194
|
# rlLoadShaderCode : Load shader from code strings
|
|
1177
1195
|
# @param vsCode [const char *]
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raylib-bindings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vaiorabbit
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ffi
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
83
|
requirements: []
|
|
84
|
-
rubygems_version:
|
|
84
|
+
rubygems_version: 4.0.3
|
|
85
85
|
specification_version: 4
|
|
86
86
|
summary: Ruby bindings for raylib, raygui and Physac
|
|
87
87
|
test_files: []
|