Update breakout example and add breakout tutorial to Tutorials list
@@ -1 +1 @@
|
||||
The classic Breakout arcade game adapted in GDevelop.
|
||||
The classic Breakout arcade game adapted in GDevelop. Read the tutorial about it to learn how to make a game like this.
|
||||
|
Before Width: | Height: | Size: 87 B After Width: | Height: | Size: 87 B |
Before Width: | Height: | Size: 200 B |
BIN
newIDE/app/resources/examples/breakout/barrier.jpg
Executable file
After Width: | Height: | Size: 3.3 MiB |
@@ -1,5 +0,0 @@
|
||||
Brakeout example originally from GDevelop 4.
|
||||
Free to use for any purposes
|
||||
|
||||
Find more examples at https://gametemplates.itch.io/
|
||||
Have fun!
|
Before Width: | Height: | Size: 471 B After Width: | Height: | Size: 471 B |
Before Width: | Height: | Size: 2.4 KiB |
@@ -472,23 +472,23 @@ module.exports = {
|
||||
]
|
||||
},
|
||||
"breakout": {
|
||||
"description": "The classic Breakout arcade game adapted in GDevelop.",
|
||||
"description": "The classic Breakout arcade game adapted in GDevelop. Read the tutorial about it to learn how to make a game like this.\n",
|
||||
"usedExtensions": [
|
||||
{
|
||||
"fullName": "Sprite",
|
||||
"name": "Sprite"
|
||||
},
|
||||
{
|
||||
"fullName": "Scene management features",
|
||||
"name": "BuiltinScene"
|
||||
"fullName": "Text object",
|
||||
"name": "TextObject"
|
||||
},
|
||||
{
|
||||
"fullName": "System information",
|
||||
"name": "SystemInfo"
|
||||
"fullName": "Tiled Sprite Object",
|
||||
"name": "TiledSpriteObject"
|
||||
},
|
||||
{
|
||||
"fullName": "Variable features",
|
||||
"name": "BuiltinVariables"
|
||||
"fullName": "",
|
||||
"name": ""
|
||||
},
|
||||
{
|
||||
"fullName": "Keyboard features",
|
||||
@@ -499,8 +499,12 @@ module.exports = {
|
||||
"name": "BuiltinObject"
|
||||
},
|
||||
{
|
||||
"fullName": "Standard events",
|
||||
"name": "BuiltinCommonInstructions"
|
||||
"fullName": "Scene management features",
|
||||
"name": "BuiltinScene"
|
||||
},
|
||||
{
|
||||
"fullName": "Variable features",
|
||||
"name": "BuiltinVariables"
|
||||
},
|
||||
{
|
||||
"fullName": "External layouts",
|
||||
|
@@ -89,6 +89,22 @@ export default class Tutorials extends PureComponent {
|
||||
Window.openExternalURL(getHelpLink('/tutorials/roadrider'));
|
||||
}}
|
||||
/>
|
||||
<ListItem
|
||||
primaryText={<Trans>Breakout Tutorial</Trans>}
|
||||
secondaryText={
|
||||
<p>
|
||||
<Trans>
|
||||
Create a simple breakout game where you must destroy all
|
||||
the bricks on the screen.
|
||||
</Trans>
|
||||
</p>
|
||||
}
|
||||
secondaryTextLines={2}
|
||||
onClick={() => {
|
||||
sendTutorialOpened('Breakout');
|
||||
Window.openExternalURL(getHelpLink('/tutorials/breakout'));
|
||||
}}
|
||||
/>
|
||||
</List>
|
||||
</Column>
|
||||
</Line>
|
||||
|