dashcode 1.2.0__tar.gz → 1.2.2__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.
@@ -1,9 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.2.0
3
+ Version: 1.2.2
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
5
  Author: IWiterI
6
6
  Project-URL: Homepage, https://github.com/ISviterI/dashcode
7
+ Project-URL: Discord, https://discord.gg/MXv3KTFmPE
7
8
  Project-URL: Wiki, https://github.com/ISviterI/dashcode/wiki
8
9
  Project-URL: Documentation, https://github.com/ISviterI/dashcode/wiki/Documentation
9
10
  Keywords: geometry dash,gd,level-generator,automation,2.2,python,dash,dashcode,code
@@ -23,6 +24,8 @@ Dynamic: summary
23
24
 
24
25
  # Dashcode
25
26
 
27
+ [![Discord](https://img.shields.io/discord/1488880281376260186?color=7289da&label=discord&logo=discord&logoColor=white)](https://discord.gg/MXv3KTFmPE)
28
+
26
29
  Dashcode is a specialized Python library for the programmatic generation of Geometry Dash levels (compatible with version 2.2+). It allows developers to build complex level structures, triggers, and gameplay mechanics entirely through code.
27
30
 
28
31
  ## Key Features
@@ -36,7 +39,8 @@ Dashcode is a specialized Python library for the programmatic generation of Geom
36
39
 
37
40
  ## Examples
38
41
  Check the `/examples` directory for advanced usage:
39
- * `simple_level.py` - Basic object placement.
42
+ * `spikes_and_orbs.py` - Basic object placement.
43
+ * `prefabs.py` - Placing objects using prefabs
40
44
  * `timeline_demo.py` - Using `build_timeline()` for synced events.
41
45
 
42
46
 
@@ -1,5 +1,7 @@
1
1
  # Dashcode
2
2
 
3
+ [![Discord](https://img.shields.io/discord/1488880281376260186?color=7289da&label=discord&logo=discord&logoColor=white)](https://discord.gg/MXv3KTFmPE)
4
+
3
5
  Dashcode is a specialized Python library for the programmatic generation of Geometry Dash levels (compatible with version 2.2+). It allows developers to build complex level structures, triggers, and gameplay mechanics entirely through code.
4
6
 
5
7
  ## Key Features
@@ -13,7 +15,8 @@ Dashcode is a specialized Python library for the programmatic generation of Geom
13
15
 
14
16
  ## Examples
15
17
  Check the `/examples` directory for advanced usage:
16
- * `simple_level.py` - Basic object placement.
18
+ * `spikes_and_orbs.py` - Basic object placement.
19
+ * `prefabs.py` - Placing objects using prefabs
17
20
  * `timeline_demo.py` - Using `build_timeline()` for synced events.
18
21
 
19
22
 
@@ -1,9 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.2.0
3
+ Version: 1.2.2
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
5
  Author: IWiterI
6
6
  Project-URL: Homepage, https://github.com/ISviterI/dashcode
7
+ Project-URL: Discord, https://discord.gg/MXv3KTFmPE
7
8
  Project-URL: Wiki, https://github.com/ISviterI/dashcode/wiki
8
9
  Project-URL: Documentation, https://github.com/ISviterI/dashcode/wiki/Documentation
9
10
  Keywords: geometry dash,gd,level-generator,automation,2.2,python,dash,dashcode,code
@@ -23,6 +24,8 @@ Dynamic: summary
23
24
 
24
25
  # Dashcode
25
26
 
27
+ [![Discord](https://img.shields.io/discord/1488880281376260186?color=7289da&label=discord&logo=discord&logoColor=white)](https://discord.gg/MXv3KTFmPE)
28
+
26
29
  Dashcode is a specialized Python library for the programmatic generation of Geometry Dash levels (compatible with version 2.2+). It allows developers to build complex level structures, triggers, and gameplay mechanics entirely through code.
27
30
 
28
31
  ## Key Features
@@ -36,7 +39,8 @@ Dashcode is a specialized Python library for the programmatic generation of Geom
36
39
 
37
40
  ## Examples
38
41
  Check the `/examples` directory for advanced usage:
39
- * `simple_level.py` - Basic object placement.
42
+ * `spikes_and_orbs.py` - Basic object placement.
43
+ * `prefabs.py` - Placing objects using prefabs
40
44
  * `timeline_demo.py` - Using `build_timeline()` for synced events.
41
45
 
42
46
 
@@ -8,7 +8,7 @@ if os.path.exists("README.md"):
8
8
 
9
9
  setup(
10
10
  name="dashcode",
11
- version="1.2.0",
11
+ version="1.2.2",
12
12
  packages=find_packages(),
13
13
  author="IWiterI",
14
14
  description="A library for Geometry Dash level generation using .gmd files",
@@ -17,6 +17,7 @@ setup(
17
17
  python_requires=">=3.6",
18
18
  project_urls={
19
19
  "Homepage": "https://github.com/ISviterI/dashcode",
20
+ "Discord": "https://discord.gg/MXv3KTFmPE",
20
21
  "Wiki": "https://github.com/ISviterI/dashcode/wiki",
21
22
  "Documentation": "https://github.com/ISviterI/dashcode/wiki/Documentation",
22
23
  },
File without changes
File without changes
File without changes