e2D 1.4.16__tar.gz → 1.4.17__tar.gz
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.
- {e2d-1.4.16 → e2d-1.4.17}/PKG-INFO +1 -1
- {e2d-1.4.16 → e2d-1.4.17}/e2D/__init__.py +4 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D/__init__.pyi +4 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D/colors.py +3 -0
- e2d-1.4.17/e2D/def_colors.py +1732 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D/envs.py +9 -9
- {e2d-1.4.16 → e2d-1.4.17}/e2D.egg-info/PKG-INFO +1 -1
- {e2d-1.4.16 → e2d-1.4.17}/e2D.egg-info/SOURCES.txt +1 -0
- {e2d-1.4.16 → e2d-1.4.17}/setup.cfg +1 -1
- {e2d-1.4.16 → e2d-1.4.17}/LICENSE +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/README.md +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D/plots.py +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D/utils.py +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D/winrec.py +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D.egg-info/dependency_links.txt +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D.egg-info/requires.txt +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/e2D.egg-info/top_level.txt +0 -0
- {e2d-1.4.16 → e2d-1.4.17}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: e2D
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.17
|
|
4
4
|
Summary: Python library for 2D games. Streamlines dev with keyboard/mouse input, vector calculations, color manipulation, and collision detection. Simplify game creation and unleash creativity!
|
|
5
5
|
Home-page: https://github.com/marick-py/e2D
|
|
6
6
|
Author: Riccardo Mariani
|
|
@@ -451,6 +451,9 @@ class Color:
|
|
|
451
451
|
def green(cls) -> "Color": return Color(0,255,0)
|
|
452
452
|
@classmethod
|
|
453
453
|
def blue(cls) -> "Color": return Color(0,0,255)
|
|
454
|
+
|
|
455
|
+
# @classmethod
|
|
456
|
+
# def (cls) -> "Color": return Color(0,0,255)
|
|
454
457
|
|
|
455
458
|
@classmethod
|
|
456
459
|
def randomize(cls) -> "Color":
|