mr-crocs-adventures/js/GraphicSet.js

20 lines
407 B
JavaScript

let GraphicSet = [
{
name: 'Nature',
tileset: 'landscape01.jpg',
tiles: 8,
scale: 3,
backgroundColor: '#6096ff',
backgroundImage: null
},
{
name: 'Moon',
tileset: 'moon.jpg',
tiles: 2,
scale: 3,
backgroundColor: 'black',
backgroundImage: 'background_earth.jpg'
}
];
export default GraphicSet;