Skip to content

Commit

Permalink
update to 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
electronstudio committed Nov 18, 2024
1 parent 4e0a891 commit 581cda5
Show file tree
Hide file tree
Showing 17 changed files with 11,946 additions and 6,893 deletions.
1,540 changes: 1,424 additions & 116 deletions docs/genindex.html

Large diffs are not rendered by default.

Binary file modified docs/objects.inv
Binary file not shown.
3,228 changes: 2,296 additions & 932 deletions docs/pyray.html

Large diffs are not rendered by default.

3,828 changes: 2,789 additions & 1,039 deletions docs/raylib.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

434 changes: 323 additions & 111 deletions dynamic/raylib/__init__.pyi

Large diffs are not rendered by default.

8 changes: 1 addition & 7 deletions dynamic/raylib/defines.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RAYLIB_VERSION_MAJOR: int = 5
RAYLIB_VERSION_MINOR: int = 5
RAYLIB_VERSION_PATCH: int = 0
RAYLIB_VERSION: str = "5.5-dev"
RAYLIB_VERSION: str = "5.5"
PI: float = 3.141592653589793
DEG2RAD = PI / 180.0
RAD2DEG = 180.0 / PI
Expand All @@ -14,10 +14,7 @@
MATERIAL_MAP_SPECULAR = raylib.MATERIAL_MAP_METALNESS
SHADER_LOC_MAP_DIFFUSE = raylib.SHADER_LOC_MAP_ALBEDO
SHADER_LOC_MAP_SPECULAR = raylib.SHADER_LOC_MAP_METALNESS
PI: float = 3.141592653589793
EPSILON: float = 1e-06
DEG2RAD = PI / 180.0
RAD2DEG = 180.0 / PI
RLGL_VERSION: str = "5.0"
RL_DEFAULT_BATCH_BUFFER_ELEMENTS: int = 8192
RL_DEFAULT_BATCH_BUFFERS: int = 1
Expand Down Expand Up @@ -102,9 +99,6 @@
RL_DEFAULT_SHADER_ATTRIB_LOCATION_BONEWEIGHTS: int = 8
RL_SHADER_LOC_MAP_DIFFUSE = raylib.RL_SHADER_LOC_MAP_ALBEDO
RL_SHADER_LOC_MAP_SPECULAR = raylib.RL_SHADER_LOC_MAP_METALNESS
PI: float = 3.141592653589793
DEG2RAD = PI / 180.0
RAD2DEG = 180.0 / PI
GL_SHADING_LANGUAGE_VERSION: int = 35724
GL_COMPRESSED_RGB_S3TC_DXT1_EXT: int = 33776
GL_COMPRESSED_RGBA_S3TC_DXT1_EXT: int = 33777
Expand Down
1 change: 0 additions & 1 deletion dynamic/raylib/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ class CubemapLayout(IntEnum):
CUBEMAP_LAYOUT_LINE_HORIZONTAL = 2
CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR = 3
CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE = 4
CUBEMAP_LAYOUT_PANORAMA = 5

class FontType(IntEnum):
FONT_DEFAULT = 0
Expand Down
Loading

0 comments on commit 581cda5

Please sign in to comment.