raylib-bindings 0.1.1 → 0.1.2
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 +6 -0
- data/README.md +1 -1
- data/lib/libraylib.dll +0 -0
- data/lib/libraylib.dylib +0 -0
- data/lib/physac.dll +0 -0
- data/lib/raygui.dll +0 -0
- data/lib/raygui.dylib +0 -0
- data/lib/raylib_main.rb +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5c8bede73961fe6aaedfeb18db2eea3c34d8c3728eae57fdabf762fe300aafe
|
|
4
|
+
data.tar.gz: a818ec378250b6791e715b7aeee9f9bb1c65a55417d1ef5ce68e61228c05f7b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd713d0c28312cdaf0ebafb49827361ebffe3dc5d41babebd28aba273f6cb7a514a202f2c132c30a16278ee3eea1d0393a8328772e86f9c2f9397390c9ba616d
|
|
7
|
+
data.tar.gz: 1feb2faf51280803b259d349b939413ff904afb17f7105acec652645bb0e865b7141351d08bd73c63705175332cfe0c35f5121299e16313c410c7024bcce6280
|
data/ChangeLog
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
+
2022-10-23 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
|
+
|
|
3
|
+
* Pulled latest raylib ( https://github.com/raysan5/raylib/commit/483f10397ee37ba551e57bad563a846f2dc5bb5b ) / and raygui ( https://github.com/raysan5/raygui/commit/d981abebd8f36dea9a297b2158b529ad8bf76a69a )
|
|
4
|
+
* [Windows] Updated DLLs with the latest raylib
|
|
5
|
+
|
|
1
6
|
2022-10-16 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
7
|
|
|
3
8
|
* Pulled latest raylib ( https://github.com/raysan5/raylib/commit/c5e89241c515d12a739a0d0bacb6a05395bf2a95 ) / and raygui ( https://github.com/raysan5/raygui/commit/98df231227d87dbf5954520169af29e610cd6a87 )
|
|
4
9
|
* example/models_loading_m3d.rb: Added
|
|
5
10
|
* example/models_loading_gltf.rb: Fixed model paths
|
|
11
|
+
* [Windows] Updated DLLs with the latest raylib
|
|
6
12
|
|
|
7
13
|
2022-08-28 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
8
14
|
|
data/README.md
CHANGED
data/lib/libraylib.dll
CHANGED
|
Binary file
|
data/lib/libraylib.dylib
CHANGED
|
Binary file
|
data/lib/physac.dll
CHANGED
|
Binary file
|
data/lib/raygui.dll
CHANGED
|
Binary file
|
data/lib/raygui.dylib
CHANGED
|
Binary file
|
data/lib/raylib_main.rb
CHANGED
|
@@ -1073,6 +1073,8 @@ module Raylib
|
|
|
1073
1073
|
:DrawCylinderEx,
|
|
1074
1074
|
:DrawCylinderWires,
|
|
1075
1075
|
:DrawCylinderWiresEx,
|
|
1076
|
+
:DrawCapsule,
|
|
1077
|
+
:DrawCapsuleWires,
|
|
1076
1078
|
:DrawPlane,
|
|
1077
1079
|
:DrawRay,
|
|
1078
1080
|
:DrawGrid,
|
|
@@ -1585,6 +1587,8 @@ module Raylib
|
|
|
1585
1587
|
:DrawCylinderEx => [Vector3.by_value, Vector3.by_value, :float, :float, :int, Color.by_value],
|
|
1586
1588
|
:DrawCylinderWires => [Vector3.by_value, :float, :float, :float, :int, Color.by_value],
|
|
1587
1589
|
:DrawCylinderWiresEx => [Vector3.by_value, Vector3.by_value, :float, :float, :int, Color.by_value],
|
|
1590
|
+
:DrawCapsule => [Vector3.by_value, Vector3.by_value, :float, :int, :int, Color.by_value],
|
|
1591
|
+
:DrawCapsuleWires => [Vector3.by_value, Vector3.by_value, :float, :int, :int, Color.by_value],
|
|
1588
1592
|
:DrawPlane => [Vector3.by_value, Vector2.by_value, Color.by_value],
|
|
1589
1593
|
:DrawRay => [Ray.by_value, Color.by_value],
|
|
1590
1594
|
:DrawGrid => [:int, :float],
|
|
@@ -2097,6 +2101,8 @@ module Raylib
|
|
|
2097
2101
|
:DrawCylinderEx => :void,
|
|
2098
2102
|
:DrawCylinderWires => :void,
|
|
2099
2103
|
:DrawCylinderWiresEx => :void,
|
|
2104
|
+
:DrawCapsule => :void,
|
|
2105
|
+
:DrawCapsuleWires => :void,
|
|
2100
2106
|
:DrawPlane => :void,
|
|
2101
2107
|
:DrawRay => :void,
|
|
2102
2108
|
:DrawGrid => :void,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raylib-bindings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vaiorabbit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-10-
|
|
11
|
+
date: 2022-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|