Skip to content

Commit 5e01747

Browse files
authored
Create 3_new_example.yml
1 parent f9ac9ea commit 5e01747

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: 🌟 Suggest a New Example
2+
description: Use this template to suggest a new example for inclusion in the Processing Examples repository.
3+
body:
4+
- type: input
5+
id: example_title
6+
attributes:
7+
label: Proposed Example Title
8+
description: Provide a title for the proposed example.
9+
validations:
10+
required: true
11+
- type: textarea
12+
attributes:
13+
label: Example Description
14+
description: Describe the proposed example. Include details of what it would demonstrate and how it would be implemented.
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Value and Necessity
20+
description: Explain why this example is valuable and needed. Describe the specific concepts or techniques it will illustrate and why they are important for users to understand.
21+
validations:
22+
required: true
23+
- type: textarea
24+
attributes:
25+
label: Initial Code
26+
description: If possible, provide initial code for the proposed example.
27+
value: |
28+
/**
29+
* Example Title
30+
* by Your Name
31+
*
32+
* Briefly describe what this example demonstrates and any instructions on how to interact with it.
33+
*/
34+
35+
void setup() {
36+
size(640, 360);
37+
// Your setup code here
38+
}
39+
40+
void draw() {
41+
// Your drawing code here
42+
}
43+
validations:
44+
required: false
45+
- type: textarea
46+
attributes:
47+
label: Additional context
48+
description: Provide any other context, similar existing examples, or any additional information that could support your suggestion.
49+
validations:
50+
required: false

0 commit comments

Comments
 (0)