@@ -2,15 +2,66 @@ import sampleExcalibird from '../assets/images/showcase/excalibird.png'
2
2
import sampleShmup from '../assets/images/showcase/shmup.png'
3
3
import sampleBreakout from '../assets/images/showcase/breakout.png'
4
4
import samplePlatformer from '../assets/images/showcase/platformer.gif'
5
+ import sampleElectron from '../assets/images/showcase/electron.png'
6
+ import sampleMatterjs from '../assets/images/showcase/matterjs.gif'
7
+ import sampleTiled from '../assets/images/showcase/tiled.gif'
8
+ import sampleGrid from '../assets/images/showcase/grid.gif'
5
9
6
10
export default [
11
+ {
12
+ title : 'Grid Movement' ,
13
+ image : sampleGrid ,
14
+ description : 'Example of building grid based movement.' ,
15
+ url : 'https://codesandbox.io/s/github/excaliburjs/sample-gird' ,
16
+ source : 'https://github.com/excaliburjs/sample-grid' ,
17
+ } ,
18
+ {
19
+ title : 'Tiled w/ Parcel' ,
20
+ image : sampleTiled ,
21
+ description :
22
+ 'This is a small level with the Tiled Plugin and Parcel bundler.' ,
23
+ url : 'https://codesandbox.io/s/github/excaliburjs/sample-tiled-parcel' ,
24
+ source : 'https://github.com/excaliburjs/sample-tiled-parcel' ,
25
+ } ,
26
+ {
27
+ title : 'Tiled w/ Vite' ,
28
+ image : sampleTiled ,
29
+ description :
30
+ 'This is a small level with the Tiled Plugin and Vite bundler.' ,
31
+ url : 'https://codesandbox.io/s/github/excaliburjs/sample-tiled-vite' ,
32
+ source : 'https://github.com/excaliburjs/sample-tiled-vite' ,
33
+ } ,
34
+ {
35
+ title : 'Tiled w/ Webpack' ,
36
+ image : sampleTiled ,
37
+ description :
38
+ 'This is a small level with the Tiled Plugin and Webpack bundler.' ,
39
+ url : 'https://codesandbox.io/s/github/excaliburjs/sample-tiled-webpack' ,
40
+ source : 'https://github.com/excaliburjs/sample-tiled-webpack' ,
41
+ } ,
7
42
{
8
43
title : 'Platformer' ,
9
44
image : samplePlatformer ,
10
45
description : 'This is a small platforming example.' ,
11
46
url : 'https://codesandbox.io/s/github/excaliburjs/sample-platformer' ,
12
47
source : 'https://github.com/excaliburjs/sample-platformer' ,
13
48
} ,
49
+ {
50
+ title : 'Matter.js' ,
51
+ image : sampleMatterjs ,
52
+ description :
53
+ 'This is a small sample showing how to wire in a 3rd party physics instead of using Excalibur.' ,
54
+ url : 'https://codesandbox.io/s/github/excaliburjs/sample-matterjs' ,
55
+ source : 'https://github.com/excaliburjs/sample-matterjs' ,
56
+ } ,
57
+ {
58
+ title : 'Electron Template' ,
59
+ image : sampleElectron ,
60
+ description :
61
+ 'This is a template to show Electron integration with Excalibur. Useful for shipping games to desktops or steam!' ,
62
+ url : 'https://codesandbox.io/s/github/excaliburjs/template-electron' ,
63
+ source : 'https://github.com/excaliburjs/template-electron' ,
64
+ } ,
14
65
{
15
66
title : 'Excalibird' ,
16
67
image : sampleExcalibird ,
0 commit comments