fix PyCharm not finding Color types in .pyi files, fixes https://github.com/electronstudio/raylib-python-cffi/issues/88
This commit is contained in:
parent
d4278968b5
commit
84c7eff4d7
4 changed files with 111 additions and 0 deletions
|
@ -3010,3 +3010,30 @@ rlShaderUniformDataType: int
|
||||||
rlTextureFilter: int
|
rlTextureFilter: int
|
||||||
rlTraceLogLevel: int
|
rlTraceLogLevel: int
|
||||||
rlVertexBuffer: struct
|
rlVertexBuffer: struct
|
||||||
|
|
||||||
|
LIGHTGRAY =( 200, 200, 200, 255 )
|
||||||
|
GRAY =( 130, 130, 130, 255 )
|
||||||
|
DARKGRAY =( 80, 80, 80, 255 )
|
||||||
|
YELLOW =( 253, 249, 0, 255 )
|
||||||
|
GOLD =( 255, 203, 0, 255 )
|
||||||
|
ORANGE =( 255, 161, 0, 255 )
|
||||||
|
PINK =( 255, 109, 194, 255 )
|
||||||
|
RED =( 230, 41, 55, 255 )
|
||||||
|
MAROON =( 190, 33, 55, 255 )
|
||||||
|
GREEN =( 0, 228, 48, 255 )
|
||||||
|
LIME =( 0, 158, 47, 255 )
|
||||||
|
DARKGREEN =( 0, 117, 44, 255 )
|
||||||
|
SKYBLUE =( 102, 191, 255, 255 )
|
||||||
|
BLUE =( 0, 121, 241, 255 )
|
||||||
|
DARKBLUE =( 0, 82, 172, 255 )
|
||||||
|
PURPLE =( 200, 122, 255, 255 )
|
||||||
|
VIOLET =( 135, 60, 190, 255 )
|
||||||
|
DARKPURPLE =( 112, 31, 126, 255 )
|
||||||
|
BEIGE =( 211, 176, 131, 255 )
|
||||||
|
BROWN =( 127, 106, 79, 255 )
|
||||||
|
DARKBROWN =( 76, 63, 47, 255 )
|
||||||
|
WHITE =( 255, 255, 255, 255 )
|
||||||
|
BLACK =( 0, 0, 0, 255 )
|
||||||
|
BLANK =( 0, 0, 0, 0 )
|
||||||
|
MAGENTA =( 255, 0, 255, 255 )
|
||||||
|
RAYWHITE =( 245, 245, 245, 255 )
|
|
@ -13,7 +13,9 @@ python3 create_enums.py > dynamic/raylib/enums.py
|
||||||
pip3 install sphinx-autoapi myst_parser sphinx_rtd_theme
|
pip3 install sphinx-autoapi myst_parser sphinx_rtd_theme
|
||||||
python3 create_stub_pyray.py > pyray/__init__.pyi
|
python3 create_stub_pyray.py > pyray/__init__.pyi
|
||||||
python3 create_enums.py >> pyray/__init__.pyi
|
python3 create_enums.py >> pyray/__init__.pyi
|
||||||
|
cat raylib/colors.py >> pyray/__init__.pyi
|
||||||
python3 create_stub_static.py >raylib/__init__.pyi
|
python3 create_stub_static.py >raylib/__init__.pyi
|
||||||
|
cat raylib/colors.py >> raylib/__init__.pyi
|
||||||
rm -r docs
|
rm -r docs
|
||||||
cd docs-src
|
cd docs-src
|
||||||
make clean ; make html ; mv _build/html/ ../docs/
|
make clean ; make html ; mv _build/html/ ../docs/
|
||||||
|
|
|
@ -4226,3 +4226,44 @@ class GuiIconName(IntEnum):
|
||||||
ICON_254 = 254
|
ICON_254 = 254
|
||||||
ICON_255 = 255
|
ICON_255 = 255
|
||||||
|
|
||||||
|
# Copyright (c) 2021 Richard Smith and others
|
||||||
|
#
|
||||||
|
# This program and the accompanying materials are made available under the
|
||||||
|
# terms of the Eclipse Public License 2.0 which is available at
|
||||||
|
# http://www.eclipse.org/legal/epl-2.0.
|
||||||
|
#
|
||||||
|
# This Source Code may also be made available under the following Secondary
|
||||||
|
# licenses when the conditions for such availability set forth in the Eclipse
|
||||||
|
# Public License, v. 2.0 are satisfied: GNU General Public License, version 2
|
||||||
|
# with the GNU Classpath Exception which is
|
||||||
|
# available at https://www.gnu.org/software/classpath/license.html.
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
||||||
|
|
||||||
|
LIGHTGRAY =( 200, 200, 200, 255 )
|
||||||
|
GRAY =( 130, 130, 130, 255 )
|
||||||
|
DARKGRAY =( 80, 80, 80, 255 )
|
||||||
|
YELLOW =( 253, 249, 0, 255 )
|
||||||
|
GOLD =( 255, 203, 0, 255 )
|
||||||
|
ORANGE =( 255, 161, 0, 255 )
|
||||||
|
PINK =( 255, 109, 194, 255 )
|
||||||
|
RED =( 230, 41, 55, 255 )
|
||||||
|
MAROON =( 190, 33, 55, 255 )
|
||||||
|
GREEN =( 0, 228, 48, 255 )
|
||||||
|
LIME =( 0, 158, 47, 255 )
|
||||||
|
DARKGREEN =( 0, 117, 44, 255 )
|
||||||
|
SKYBLUE =( 102, 191, 255, 255 )
|
||||||
|
BLUE =( 0, 121, 241, 255 )
|
||||||
|
DARKBLUE =( 0, 82, 172, 255 )
|
||||||
|
PURPLE =( 200, 122, 255, 255 )
|
||||||
|
VIOLET =( 135, 60, 190, 255 )
|
||||||
|
DARKPURPLE =( 112, 31, 126, 255 )
|
||||||
|
BEIGE =( 211, 176, 131, 255 )
|
||||||
|
BROWN =( 127, 106, 79, 255 )
|
||||||
|
DARKBROWN =( 76, 63, 47, 255 )
|
||||||
|
WHITE =( 255, 255, 255, 255 )
|
||||||
|
BLACK =( 0, 0, 0, 255 )
|
||||||
|
BLANK =( 0, 0, 0, 0 )
|
||||||
|
MAGENTA =( 255, 0, 255, 255 )
|
||||||
|
RAYWHITE =( 245, 245, 245, 255 )
|
||||||
|
|
||||||
|
|
|
@ -3964,3 +3964,44 @@ rlShaderUniformDataType: int
|
||||||
rlTextureFilter: int
|
rlTextureFilter: int
|
||||||
rlTraceLogLevel: int
|
rlTraceLogLevel: int
|
||||||
rlVertexBuffer: struct
|
rlVertexBuffer: struct
|
||||||
|
# Copyright (c) 2021 Richard Smith and others
|
||||||
|
#
|
||||||
|
# This program and the accompanying materials are made available under the
|
||||||
|
# terms of the Eclipse Public License 2.0 which is available at
|
||||||
|
# http://www.eclipse.org/legal/epl-2.0.
|
||||||
|
#
|
||||||
|
# This Source Code may also be made available under the following Secondary
|
||||||
|
# licenses when the conditions for such availability set forth in the Eclipse
|
||||||
|
# Public License, v. 2.0 are satisfied: GNU General Public License, version 2
|
||||||
|
# with the GNU Classpath Exception which is
|
||||||
|
# available at https://www.gnu.org/software/classpath/license.html.
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
||||||
|
|
||||||
|
LIGHTGRAY =( 200, 200, 200, 255 )
|
||||||
|
GRAY =( 130, 130, 130, 255 )
|
||||||
|
DARKGRAY =( 80, 80, 80, 255 )
|
||||||
|
YELLOW =( 253, 249, 0, 255 )
|
||||||
|
GOLD =( 255, 203, 0, 255 )
|
||||||
|
ORANGE =( 255, 161, 0, 255 )
|
||||||
|
PINK =( 255, 109, 194, 255 )
|
||||||
|
RED =( 230, 41, 55, 255 )
|
||||||
|
MAROON =( 190, 33, 55, 255 )
|
||||||
|
GREEN =( 0, 228, 48, 255 )
|
||||||
|
LIME =( 0, 158, 47, 255 )
|
||||||
|
DARKGREEN =( 0, 117, 44, 255 )
|
||||||
|
SKYBLUE =( 102, 191, 255, 255 )
|
||||||
|
BLUE =( 0, 121, 241, 255 )
|
||||||
|
DARKBLUE =( 0, 82, 172, 255 )
|
||||||
|
PURPLE =( 200, 122, 255, 255 )
|
||||||
|
VIOLET =( 135, 60, 190, 255 )
|
||||||
|
DARKPURPLE =( 112, 31, 126, 255 )
|
||||||
|
BEIGE =( 211, 176, 131, 255 )
|
||||||
|
BROWN =( 127, 106, 79, 255 )
|
||||||
|
DARKBROWN =( 76, 63, 47, 255 )
|
||||||
|
WHITE =( 255, 255, 255, 255 )
|
||||||
|
BLACK =( 0, 0, 0, 255 )
|
||||||
|
BLANK =( 0, 0, 0, 0 )
|
||||||
|
MAGENTA =( 255, 0, 255, 255 )
|
||||||
|
RAYWHITE =( 245, 245, 245, 255 )
|
||||||
|
|
||||||
|
|
Reference in a new issue