raylib 4.2.1.0__cp310-cp310-macosx_12_0_arm64.whl → 4.5.0.1__cp310-cp310-macosx_12_0_arm64.whl
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.
Potentially problematic release.
This version of raylib might be problematic. Click here for more details.
- pyray/__init__.py +21 -18
- pyray/__init__.pyi +211 -106
- raylib/__init__.pyi +225 -111
- raylib/_raylib_cffi.abi3.so +0 -0
- raylib/build.py +5 -5
- raylib/enums.py +17 -13
- raylib/version.py +1 -1
- {raylib-4.2.1.0.dist-info → raylib-4.5.0.1.dist-info}/METADATA +5 -3
- raylib-4.5.0.1.dist-info/RECORD +15 -0
- {raylib-4.2.1.0.dist-info → raylib-4.5.0.1.dist-info}/WHEEL +1 -1
- raylib-4.2.1.0.dist-info/RECORD +0 -15
- {raylib-4.2.1.0.dist-info → raylib-4.5.0.1.dist-info}/LICENSE +0 -0
- {raylib-4.2.1.0.dist-info → raylib-4.5.0.1.dist-info}/top_level.txt +0 -0
raylib/_raylib_cffi.abi3.so
CHANGED
|
Binary file
|
raylib/build.py
CHANGED
|
@@ -170,11 +170,11 @@ def build_unix():
|
|
|
170
170
|
|
|
171
171
|
def build_windows():
|
|
172
172
|
print("BUILDING FOR WINDOWS")
|
|
173
|
-
ffibuilder.cdef(open("raylib/raylib.h.modified").read()
|
|
174
|
-
ffibuilder.cdef(open("raylib/rlgl.h.modified").read()
|
|
175
|
-
ffibuilder.cdef(open("raylib/raygui.h.modified").read()
|
|
176
|
-
ffibuilder.cdef(open("raylib/physac.h.modified").read()
|
|
177
|
-
ffibuilder.cdef(open("raylib/raymath.h.modified").read()
|
|
173
|
+
ffibuilder.cdef(open("raylib/raylib.h.modified").read())
|
|
174
|
+
ffibuilder.cdef(open("raylib/rlgl.h.modified").read())
|
|
175
|
+
ffibuilder.cdef(open("raylib/raygui.h.modified").read())
|
|
176
|
+
ffibuilder.cdef(open("raylib/physac.h.modified").read())
|
|
177
|
+
ffibuilder.cdef(open("raylib/raymath.h.modified").read())
|
|
178
178
|
ffibuilder.set_source("raylib._raylib_cffi", """
|
|
179
179
|
#include "raylib.h"
|
|
180
180
|
#include "rlgl.h"
|
raylib/enums.py
CHANGED
|
@@ -305,6 +305,7 @@ class BlendMode(IntEnum):
|
|
|
305
305
|
BLEND_SUBTRACT_COLORS = 4
|
|
306
306
|
BLEND_ALPHA_PREMULTIPLY = 5
|
|
307
307
|
BLEND_CUSTOM = 6
|
|
308
|
+
BLEND_CUSTOM_SEPARATE = 7
|
|
308
309
|
|
|
309
310
|
class Gesture(IntEnum):
|
|
310
311
|
GESTURE_NONE = 0
|
|
@@ -420,6 +421,9 @@ class GuiDropdownBoxProperty(IntEnum):
|
|
|
420
421
|
class GuiTextBoxProperty(IntEnum):
|
|
421
422
|
TEXT_INNER_PADDING = 16
|
|
422
423
|
TEXT_LINES_SPACING = 17
|
|
424
|
+
TEXT_ALIGNMENT_VERTICAL = 18
|
|
425
|
+
TEXT_MULTILINE = 19
|
|
426
|
+
TEXT_WRAP_MODE = 20
|
|
423
427
|
|
|
424
428
|
class GuiSpinnerProperty(IntEnum):
|
|
425
429
|
SPIN_BUTTON_WIDTH = 16
|
|
@@ -645,19 +649,19 @@ class GuiIconName(IntEnum):
|
|
|
645
649
|
ICON_FILE_NEW = 203
|
|
646
650
|
ICON_FOLDER_ADD = 204
|
|
647
651
|
ICON_ALARM = 205
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
652
|
+
ICON_CPU = 206
|
|
653
|
+
ICON_ROM = 207
|
|
654
|
+
ICON_STEP_OVER = 208
|
|
655
|
+
ICON_STEP_INTO = 209
|
|
656
|
+
ICON_STEP_OUT = 210
|
|
657
|
+
ICON_RESTART = 211
|
|
658
|
+
ICON_BREAKPOINT_ON = 212
|
|
659
|
+
ICON_BREAKPOINT_OFF = 213
|
|
660
|
+
ICON_BURGER_MENU = 214
|
|
661
|
+
ICON_CASE_SENSITIVE = 215
|
|
662
|
+
ICON_REG_EXP = 216
|
|
663
|
+
ICON_FOLDER = 217
|
|
664
|
+
ICON_FILE = 218
|
|
661
665
|
ICON_219 = 219
|
|
662
666
|
ICON_220 = 220
|
|
663
667
|
ICON_221 = 221
|
raylib/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "4.
|
|
1
|
+
__version__ = "4.5.0.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: raylib
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.5.0.1
|
|
4
4
|
Summary: Python CFFI bindings for Raylib
|
|
5
5
|
Home-page: https://github.com/electronstudio/raylib-python-cffi
|
|
6
6
|
Author: Electron Studio
|
|
@@ -8,16 +8,17 @@ Author-email: github@electronstudio.co.uk
|
|
|
8
8
|
License: EPL-2.0
|
|
9
9
|
Classifier: License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.7
|
|
15
16
|
Description-Content-Type: text/markdown
|
|
16
17
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: cffi
|
|
18
|
+
Requires-Dist: cffi >=1.14.6
|
|
18
19
|
Requires-Dist: inflection
|
|
19
20
|
|
|
20
|
-
# Python Bindings for Raylib 4.
|
|
21
|
+
# Python Bindings for Raylib 4.5
|
|
21
22
|
|
|
22
23
|
New CFFI API static bindings.
|
|
23
24
|
* Automatically generated to be as close as possible to
|
|
@@ -51,6 +52,7 @@ First make sure you have the latest pip installed:
|
|
|
51
52
|
|
|
52
53
|
Then install
|
|
53
54
|
|
|
55
|
+
python3 -m pip install setuptools
|
|
54
56
|
python3 -m pip install raylib
|
|
55
57
|
|
|
56
58
|
On most platforms it should install a binary wheel (Windows 10 x64, MacOS 10.15 x64, Linux Ubuntu1804 x64).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
pyray/__init__.py,sha256=rqSg_m5QmUVqPcUpsKZLlemqr0YXbWe7JiEWM3ByNhk,4249
|
|
2
|
+
pyray/__init__.pyi,sha256=JpLFITCRC8xkm7_ZoTpylfANJqtqgRh3MlV8BoQXj2Y,159246
|
|
3
|
+
raylib/__init__.py,sha256=DWXPmoq7tC5wzZsrt6rReGy1RflyZwk-SdF-9lBZHok,919
|
|
4
|
+
raylib/__init__.pyi,sha256=5OzPw3zg9T2irbSpBqyoD3akuF4OFtIFgBQu8srghek,147056
|
|
5
|
+
raylib/_raylib_cffi.abi3.so,sha256=YRiLwk1y2aAY2MTjKxXDXT0uuiDxDWtZ71YFzwujZVA,2575697
|
|
6
|
+
raylib/build.py,sha256=j5dmbYZ0eMZkRKE4dwjKFA-e5CU4Ts3KcG7g2Gu0I5I,7763
|
|
7
|
+
raylib/colors.py,sha256=_u-mYrpdx7_v_4wnJrnSu_m36ixKJWbort780_V6rTw,1523
|
|
8
|
+
raylib/defines.py,sha256=NBAW4NOUcGYKXy-rd4nuuJ6dI0MxIRBVee-KkIMiAWA,375
|
|
9
|
+
raylib/enums.py,sha256=ti-MA0oZgBc39ZOjUdqi01NQT8cifJI-2FAuQyNqYxg,17237
|
|
10
|
+
raylib/version.py,sha256=WQ3S39ClTjOJlhfs5GyN4mrFlo8B_pukp2Tey4fqIaA,23
|
|
11
|
+
raylib-4.5.0.1.dist-info/LICENSE,sha256=C-zxZWe-t3-iUrdmRjHdF3yPmhiJ5ImVtFN5xxMOUwM,14198
|
|
12
|
+
raylib-4.5.0.1.dist-info/METADATA,sha256=vp4nnTWMas_OnZgNkUo5VWyqVi79hmrP9DF1TEyR83U,5501
|
|
13
|
+
raylib-4.5.0.1.dist-info/WHEEL,sha256=b3IDvY3AnrBBG1Cw-ND4Kg3tK29R_NR5ZYl2aApN4KY,110
|
|
14
|
+
raylib-4.5.0.1.dist-info/top_level.txt,sha256=PnMBDWaUP4jsbn_NewagcC9FjHYpzSAIQuhxNzt9hkg,13
|
|
15
|
+
raylib-4.5.0.1.dist-info/RECORD,,
|
raylib-4.2.1.0.dist-info/RECORD
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
pyray/__init__.py,sha256=qde4dWxXgsNq2u1ClbRyEYNEcSkEMxnC2q7ulNUmDRA,4071
|
|
2
|
-
pyray/__init__.pyi,sha256=jDM0gXoDJhbqaIquJe8MtQ1QHtBF_UgHLaoqa-11DfU,155476
|
|
3
|
-
raylib/__init__.py,sha256=DWXPmoq7tC5wzZsrt6rReGy1RflyZwk-SdF-9lBZHok,919
|
|
4
|
-
raylib/__init__.pyi,sha256=urrFcTxmMgyZq8nFXAYkx2oIwpMZFwHzNsfJUh2I-Es,143151
|
|
5
|
-
raylib/_raylib_cffi.abi3.so,sha256=c_x7b-dOI-PeVlUXpCljnyl4knrYtfOnG-76IGrbDYw,2839144
|
|
6
|
-
raylib/build.py,sha256=AXs6TVXOWrbNskuo8Xr-vbuE_nq7uQTPXYkDrWxAx6k,7878
|
|
7
|
-
raylib/colors.py,sha256=_u-mYrpdx7_v_4wnJrnSu_m36ixKJWbort780_V6rTw,1523
|
|
8
|
-
raylib/defines.py,sha256=NBAW4NOUcGYKXy-rd4nuuJ6dI0MxIRBVee-KkIMiAWA,375
|
|
9
|
-
raylib/enums.py,sha256=GvQk8FoUIwCXJX8-TOc8Lz5hmnSJbCvF5VoIzCZ5qrI,17057
|
|
10
|
-
raylib/version.py,sha256=nQGWXX6BNwHfyLaAwJfeu9EBSF1trIbKjjoHMy8XnEY,23
|
|
11
|
-
raylib-4.2.1.0.dist-info/LICENSE,sha256=C-zxZWe-t3-iUrdmRjHdF3yPmhiJ5ImVtFN5xxMOUwM,14198
|
|
12
|
-
raylib-4.2.1.0.dist-info/METADATA,sha256=R8ZTPXuuuVBAash_5Rz-4_sq3Hr6OGGcrKw5hZ5BwFY,5414
|
|
13
|
-
raylib-4.2.1.0.dist-info/WHEEL,sha256=xBRw0o-jUJvuKe0FuacfvvaiffCdrJXjhTli9LcE-Dk,110
|
|
14
|
-
raylib-4.2.1.0.dist-info/top_level.txt,sha256=PnMBDWaUP4jsbn_NewagcC9FjHYpzSAIQuhxNzt9hkg,13
|
|
15
|
-
raylib-4.2.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|