pygameControls 0.2.1__tar.gz → 0.2.3__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.
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/PKG-INFO +4 -1
- pygamecontrols-0.2.3/README.md +6 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/controller.py +1 -1
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/globals.py +2 -2
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/sony_playstation4_controller.py +2 -6
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls.egg-info/PKG-INFO +4 -1
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/setup.py +1 -1
- pygamecontrols-0.2.1/README.md +0 -3
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/LICENSE +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/__init__.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/controlsbase.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/dualsense_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/dualsense_edge_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/enums.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/generic_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/logitech_dual_action_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/logitech_f310_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/logitech_f510_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/logitech_f710_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/playstation3_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/playstation4_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/sony_playstation3_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/xbox_360_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/xbox_series_x_controller.py +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls.egg-info/SOURCES.txt +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls.egg-info/dependency_links.txt +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls.egg-info/top_level.txt +0 -0
- {pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pygameControls
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.3
|
4
4
|
Summary: A simple controller class for pygame.
|
5
5
|
Home-page:
|
6
6
|
Author: Jan Lerking
|
@@ -22,3 +22,6 @@ Dynamic: summary
|
|
22
22
|
# PyGame-Controller
|
23
23
|
|
24
24
|
Small module to make it easy to add controller support.
|
25
|
+
|
26
|
+

|
27
|
+

|
@@ -126,10 +126,10 @@ def init():
|
|
126
126
|
},
|
127
127
|
{
|
128
128
|
"vidpid": "054c:09cc",
|
129
|
-
"guid": "",
|
129
|
+
"guid": "05009b514c050000cc09000000810000",
|
130
130
|
"connection": ConnectionType.BLUETOOTH,
|
131
131
|
"input": InputType.DirectInput,
|
132
|
-
"name": ["
|
132
|
+
"name": ["Wireless Controller"],
|
133
133
|
"class": CONTROLLERS["Sony PLAYSTATION(R)4 Controller"]
|
134
134
|
}
|
135
135
|
],
|
{pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/sony_playstation4_controller.py
RENAMED
@@ -23,12 +23,8 @@ class SonyPlayStation4Controller(ControlsBase):
|
|
23
23
|
"left stick button": 11,
|
24
24
|
"right stick button": 12,
|
25
25
|
"logo button": 10,
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"down button": 14,
|
29
|
-
"up button": 13,
|
30
|
-
"left button": 15,
|
31
|
-
"right button": 16
|
26
|
+
"share button": 8,
|
27
|
+
"options button": 9
|
32
28
|
}
|
33
29
|
print(f"{self.name} connected.")
|
34
30
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pygameControls
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.3
|
4
4
|
Summary: A simple controller class for pygame.
|
5
5
|
Home-page:
|
6
6
|
Author: Jan Lerking
|
@@ -22,3 +22,6 @@ Dynamic: summary
|
|
22
22
|
# PyGame-Controller
|
23
23
|
|
24
24
|
Small module to make it easy to add controller support.
|
25
|
+
|
26
|
+

|
27
|
+

|
pygamecontrols-0.2.1/README.md
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/logitech_dual_action_controller.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pygamecontrols-0.2.1 → pygamecontrols-0.2.3}/pygameControls/sony_playstation3_controller.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|