raylib-bindings 0.5.2 → 0.5.4
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 +22 -0
- data/README.md +1 -1
- data/lib/libraylib.aarch64.so +0 -0
- data/lib/libraylib.dll +0 -0
- data/lib/libraylib.dylib +0 -0
- data/lib/libraylib.x86_64.so +0 -0
- data/lib/physac.dll +0 -0
- data/lib/physac.rb +86 -67
- data/lib/raygui.aarch64.so +0 -0
- data/lib/raygui.dll +0 -0
- data/lib/raygui.dylib +0 -0
- data/lib/raygui.rb +367 -314
- data/lib/raygui.x86_64.so +0 -0
- data/lib/raygui_helper.rb +28 -0
- data/lib/raygui_main.rb +871 -0
- data/lib/raylib.rb +2 -1
- data/lib/raylib_main.rb +2677 -2140
- data/lib/raymath.rb +557 -445
- data/lib/rcamera.rb +62 -50
- data/lib/rlgl.rb +678 -532
- metadata +5 -3
data/lib/raygui.x86_64.so
CHANGED
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Yet another raylib wrapper for Ruby
|
2
|
+
#
|
3
|
+
# * https://github.com/vaiorabbit/raylib-bindings
|
4
|
+
|
5
|
+
require 'ffi'
|
6
|
+
|
7
|
+
module Raylib
|
8
|
+
|
9
|
+
def RGuiButton(bounds, text)
|
10
|
+
result = GuiButton(bounds, text)
|
11
|
+
return result == 1
|
12
|
+
end
|
13
|
+
|
14
|
+
def RGuiSliderBar(bounds, textLeft, textRight, value, minValue, maxValue)
|
15
|
+
value_buf = FFI::MemoryPointer.new(:float, 1)
|
16
|
+
value_buf.put_float(0, value)
|
17
|
+
result = GuiSliderBar(bounds, textLeft, textRight, value_buf, minValue, maxValue)
|
18
|
+
return value_buf.read_float
|
19
|
+
end
|
20
|
+
|
21
|
+
def RGuiCheckBox(bounds, text, checked)
|
22
|
+
checked_buf = FFI::MemoryPointer.new(:bool, 1)
|
23
|
+
checked_buf.put(:bool, 0, checked)
|
24
|
+
result = GuiCheckBox(bounds, text, checked_buf)
|
25
|
+
return checked_buf.get(:bool, 0)
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|