Update breakout example and add breakout tutorial to Tutorials list

This commit is contained in:
Florian Rival
2019-07-23 23:07:09 +01:00
parent 899c173627
commit 6b75405f91
11 changed files with 8653 additions and 14247 deletions

View File

@@ -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.

View File

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 87 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

File diff suppressed because it is too large Load Diff

View File

@@ -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!

View File

Before

Width:  |  Height:  |  Size: 471 B

After

Width:  |  Height:  |  Size: 471 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -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",

View File

@@ -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>

File diff suppressed because it is too large Load Diff