Skip to content
This repository was archived by the owner on Apr 6, 2024. It is now read-only.

Commit cc4604a

Browse files
committed
Update samples
1 parent a83a3e5 commit cc4604a

File tree

5 files changed

+51
-0
lines changed

5 files changed

+51
-0
lines changed
18.7 KB
Loading
4.4 MB
Loading
2.09 MB
Loading
663 KB
Loading

src/data/samples.js

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,66 @@ import sampleExcalibird from '../assets/images/showcase/excalibird.png'
22
import sampleShmup from '../assets/images/showcase/shmup.png'
33
import sampleBreakout from '../assets/images/showcase/breakout.png'
44
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'
59

610
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+
},
742
{
843
title: 'Platformer',
944
image: samplePlatformer,
1045
description: 'This is a small platforming example.',
1146
url: 'https://codesandbox.io/s/github/excaliburjs/sample-platformer',
1247
source: 'https://github.com/excaliburjs/sample-platformer',
1348
},
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+
},
1465
{
1566
title: 'Excalibird',
1667
image: sampleExcalibird,

0 commit comments

Comments
 (0)