raylib-bindings 0.0.9 → 0.0.10
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 +4 -0
- data/README.md +11 -5
- data/lib/libraylib.dll +0 -0
- data/lib/libraylib.dylib +0 -0
- data/lib/physac.dll +0 -0
- data/lib/physac.dylib +0 -0
- data/lib/physac.rb +1 -0
- data/lib/raygui.dll +0 -0
- data/lib/raygui.dylib +0 -0
- data/lib/raygui.rb +1 -1
- data/lib/raylib_main.rb +1 -1
- data/lib/raymath.rb +3 -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: 18da3c5e628cf174b00d0b1d9ca43760977bba609be9d1c3e24b47116ccd0932
|
|
4
|
+
data.tar.gz: 8ee6a922f417da13d0d3a90fce8f0e8b69cbd663fe37ea891450c510e93d777d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37618bade3d5505ccffefabfa9755e08e8c96fee57bab31d69d070a9e4dcd71d57b210e33a55d17b021f15c0a5620192bd9f552bf9d8a52f9f5b77458702a75c
|
|
7
|
+
data.tar.gz: f742654e0673044f987011a6f09a7f858e55bb0f0385832aca844d2592de9ac76e2a596fe0a0750ff828c5f40a89dd06663f718309ce06768d161bbd6a61e53e
|
data/ChangeLog
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
2022-08-12 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
|
+
|
|
3
|
+
* Pulled latest raylib ( https://github.com/raysan5/raylib/commit/d658e6772d75bce52fbe46cc9789f0b33500bc0f ) and added raylib v4.2.0 features ( https://github.com/raysan5/raylib/releases/tag/4.2.0 )
|
|
4
|
+
|
|
1
5
|
2022-07-18 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
6
|
|
|
3
7
|
* examples/core_storage_values.rb: Removed ( see https://github.com/raysan5/raylib/commit/e722a8dbef59cf0ecccf141af61e1e1c8a24849f )
|
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-
|
|
6
|
+
* Last modified : 2022-08-12
|
|
7
7
|
|
|
8
8
|
Provides Ruby bindings for raylib-related libraries including:
|
|
9
9
|
|
|
@@ -25,7 +25,7 @@ Provides Ruby bindings for raylib-related libraries including:
|
|
|
25
25
|
* Ruby interpreter
|
|
26
26
|
* Tested on:
|
|
27
27
|
* [macOS]
|
|
28
|
-
* ruby 3.1.
|
|
28
|
+
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
|
|
29
29
|
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
|
30
30
|
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
|
|
31
31
|
|
|
@@ -34,7 +34,7 @@ Provides Ruby bindings for raylib-related libraries including:
|
|
|
34
34
|
* [macOS] clang
|
|
35
35
|
|
|
36
36
|
$ clang --version
|
|
37
|
-
Apple clang version 13.1.6 (clang-1316.0.21.2.
|
|
37
|
+
Apple clang version 13.1.6 (clang-1316.0.21.2.5)
|
|
38
38
|
Target: arm64-apple-darwin21.5.0
|
|
39
39
|
Thread model: posix
|
|
40
40
|
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
|
@@ -61,6 +61,12 @@ Provides Ruby bindings for raylib-related libraries including:
|
|
|
61
61
|
* Tested on:
|
|
62
62
|
* [macOS] clang
|
|
63
63
|
|
|
64
|
+
$ clang --version
|
|
65
|
+
Apple clang version 13.1.6 (clang-1316.0.21.2.3)
|
|
66
|
+
Target: arm64-apple-darwin21.5.0
|
|
67
|
+
Thread model: posix
|
|
68
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
|
69
|
+
|
|
64
70
|
Apple clang version 13.0.0 (clang-1300.0.29.3)
|
|
65
71
|
Target: arm64-apple-darwin20.6.0
|
|
66
72
|
Thread model: posix
|
|
@@ -88,8 +94,8 @@ Shared libraries in `lib` directory are built on top of these products and are a
|
|
|
88
94
|
* raygui ( https://github.com/raysan5/raygui )
|
|
89
95
|
* https://github.com/raysan5/raygui/blob/master/LICENSE
|
|
90
96
|
* `physac.dylib`, `physac.dll`
|
|
91
|
-
* Physac ( https://github.com/
|
|
92
|
-
* https://github.com/
|
|
97
|
+
* Physac ( https://github.com/raysan5/physac )
|
|
98
|
+
* https://github.com/raysan5/physac/blob/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833/src/physac.h#L51-L68
|
|
93
99
|
|
|
94
100
|
All ruby codes here are available under the terms of the zlib/libpng License ( http://opensource.org/licenses/Zlib ).
|
|
95
101
|
|
data/lib/libraylib.dll
CHANGED
|
Binary file
|
data/lib/libraylib.dylib
CHANGED
|
Binary file
|
data/lib/physac.dll
CHANGED
|
Binary file
|
data/lib/physac.dylib
CHANGED
|
Binary file
|
data/lib/physac.rb
CHANGED
data/lib/raygui.dll
CHANGED
|
Binary file
|
data/lib/raygui.dylib
CHANGED
|
Binary file
|
data/lib/raygui.rb
CHANGED
data/lib/raylib_main.rb
CHANGED
data/lib/raymath.rb
CHANGED
|
@@ -91,6 +91,7 @@ module Raylib
|
|
|
91
91
|
:Vector3OrthoNormalize,
|
|
92
92
|
:Vector3Transform,
|
|
93
93
|
:Vector3RotateByQuaternion,
|
|
94
|
+
:Vector3RotateByAxisAngle,
|
|
94
95
|
:Vector3Lerp,
|
|
95
96
|
:Vector3Reflect,
|
|
96
97
|
:Vector3Min,
|
|
@@ -203,6 +204,7 @@ module Raylib
|
|
|
203
204
|
:Vector3OrthoNormalize => [:pointer, :pointer],
|
|
204
205
|
:Vector3Transform => [Vector3.by_value, Matrix.by_value],
|
|
205
206
|
:Vector3RotateByQuaternion => [Vector3.by_value, Quaternion.by_value],
|
|
207
|
+
:Vector3RotateByAxisAngle => [Vector3.by_value, Vector3.by_value, :float],
|
|
206
208
|
:Vector3Lerp => [Vector3.by_value, Vector3.by_value, :float],
|
|
207
209
|
:Vector3Reflect => [Vector3.by_value, Vector3.by_value],
|
|
208
210
|
:Vector3Min => [Vector3.by_value, Vector3.by_value],
|
|
@@ -315,6 +317,7 @@ module Raylib
|
|
|
315
317
|
:Vector3OrthoNormalize => :void,
|
|
316
318
|
:Vector3Transform => Vector3.by_value,
|
|
317
319
|
:Vector3RotateByQuaternion => Vector3.by_value,
|
|
320
|
+
:Vector3RotateByAxisAngle => Vector3.by_value,
|
|
318
321
|
:Vector3Lerp => Vector3.by_value,
|
|
319
322
|
:Vector3Reflect => Vector3.by_value,
|
|
320
323
|
:Vector3Min => Vector3.by_value,
|
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.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vaiorabbit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|