raylib-bindings 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59c4799356e2996ef3eca174fa65d72ca7ae17199247cf45bc15719f8170c99e
4
- data.tar.gz: 8d2d23ee79d1e60cfdc124c7c2919d3b83cabd2e692e0f44b31aa933f85aaab3
3
+ metadata.gz: c5c8bede73961fe6aaedfeb18db2eea3c34d8c3728eae57fdabf762fe300aafe
4
+ data.tar.gz: a818ec378250b6791e715b7aeee9f9bb1c65a55417d1ef5ce68e61228c05f7b5
5
5
  SHA512:
6
- metadata.gz: faf9b04f5d594ee6b2a83700073b206a8ddb365555cc49a44940a390cf46bacf0f8a2b4d7535f396dd1afe20ad32d1995dac7cf597fdbd67cb60f3571dae9275
7
- data.tar.gz: c308e6bea109912cc0e2fd2d51ab404efbbad27cc21a9c55e7ba427c6c53cdd97d47cbe6b54e4bc9bfa7335f5cc36d05be80c2aa1b08319c1d6e4452038a3968
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
@@ -3,7 +3,7 @@
3
3
  # Yet another raylib wrapper for Ruby #
4
4
 
5
5
  * Created : 2021-10-17
6
- * Last modified : 2022-10-16
6
+ * Last modified : 2022-10-23
7
7
 
8
8
  Provides Ruby bindings for raylib-related libraries including:
9
9
 
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.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-16 00:00:00.000000000 Z
11
+ date: 2022-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi