raylib 5.5.0.1__cp313-cp313-win_amd64.whl → 5.5.0.3rc1__cp313-cp313-win_amd64.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 +1 -1
- pyray/__init__.pyi +2274 -2203
- raylib/__init__.py +9 -5
- raylib/__init__.pyi +2176 -2156
- raylib/_raylib_cffi.cp313-win_amd64.pyd +0 -0
- raylib/build.py +107 -41
- raylib/defines.py +2 -4
- raylib/enums.py +40 -0
- raylib/physac.h.modified +74 -68
- raylib/raygui.h.modified +2 -2
- raylib/version.py +1 -1
- {raylib-5.5.0.1.dist-info → raylib-5.5.0.3rc1.dist-info}/METADATA +34 -17
- raylib-5.5.0.3rc1.dist-info/RECORD +24 -0
- {raylib-5.5.0.1.dist-info → raylib-5.5.0.3rc1.dist-info}/WHEEL +1 -1
- raylib-5.5.0.1.dist-info/RECORD +0 -24
- {raylib-5.5.0.1.dist-info → raylib-5.5.0.3rc1.dist-info/licenses}/LICENSE +0 -0
- {raylib-5.5.0.1.dist-info → raylib-5.5.0.3rc1.dist-info}/top_level.txt +0 -0
raylib/__init__.py
CHANGED
|
@@ -13,18 +13,22 @@
|
|
|
13
13
|
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
14
|
|
|
15
15
|
import sys
|
|
16
|
+
import logging
|
|
17
|
+
|
|
18
|
+
logger = logging.getLogger(__name__)
|
|
19
|
+
|
|
16
20
|
try:
|
|
17
21
|
from ._raylib_cffi import ffi, lib as rl
|
|
18
22
|
except ModuleNotFoundError:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
23
|
+
logger.error("*** ERROR LOADING NATIVE CODE ***")
|
|
24
|
+
logger.error("See https://github.com/electronstudio/raylib-python-cffi/issues/142")
|
|
25
|
+
logger.error("Your Python is: %s", str(sys.implementation))
|
|
22
26
|
raise
|
|
27
|
+
|
|
23
28
|
from raylib._raylib_cffi.lib import *
|
|
24
29
|
from raylib.colors import *
|
|
25
30
|
from raylib.defines import *
|
|
26
31
|
import cffi
|
|
27
32
|
from .version import __version__
|
|
28
33
|
|
|
29
|
-
|
|
30
|
-
|
|
34
|
+
logger.warning("RAYLIB STATIC %s LOADED", __version__)
|