This is a tile based engine for the CoronaSDK Game Development Framework.
This is the official repository for the Million Tile Engine (MTE) originally developed by dyson122 https://forums.coronalabs.com/user/315031-dyson122/ and has since been open sourced under the MIT license.
See below for video demonstrations
mte/
├──dist/ * compiled output of the source
|──docs/ * documents on usage of the engine
|──legacy/ * houses older code before this repository
├──samples/ * an assortment of various code samples and projects used with this engine
│
├──src/ * our source files that will be compiled
│ ├──folder/ * each folder is generally a 'standalone' module
│
│
└──license.txt * copy of this engines license
- Install lua (tested with v5.2.4) (brew install lua, lua for windows) for building the source.
# At the root of the project
./amalg.lua -o ./dist/mte.lua -s ./src/mte.lua -c
# Compiled project will be at dist/mte.lua
High speed platforming action utilizing very large, detailed tiles! One of three platforming samples included with Million Tile Engine version 0.8
A multilayered castle map using the Million Tile Engine's advanced perspective effect. Locking the camera to a sprite is as easy as calling mte.setCameraFocus(). Moving a sprite in relation to the map with easing, independent of screen pixel resolution or even app resolution, is also just a single line: mte.moveSpriteTo(). This demo is included in the Million Tile Engine download.
This MTE sample project demonstrates the Tile Lighting system new in version 0.943. This sample is included in the MTE download along with the others.
A demonstration of newly enabled physics support for the ellipse, polygon, polyline, and box objects in Tiled, as well as the optional vector display of those objects. The physics forces have been amped up in this video for effect.
A quick run-through of one of MTE's newest sample projects: IsometricStoryboardTMX. The new project demonstrates the new Isometric map support, changing maps via Corona's storyboard API, and loading directly from Tiled TMX files.
Castle Demo runs at 60fps on the iPad2 and 30fps on the iPhone4 and the iPhone3GS. The Million Tile Engine can reach all segments of the market regardless of device performance.
Tile culling is the magic behind a successful tile engine. This 120,000 tile map was only possible because of the Million Tile Engine's sophisticated culling system. Maps can be made much larger, too. The only limit to map size is the device's memory.
Everything in this video is in a single map, including the underground portions. The Million Tile Engine stores map layers in display groups, allowing developers to hide and reveal entire layers as needed.
The Million Tile Engine doesn’t merely animate tiles, it synchronizes those animations.
It's Corona SDK, yet it has a 3D effect. Make your game stand out!
MTE includes convenient functions for altering the alpha channel and color of tiles, layers, levels or the whole map simultaneously, and a convenient function for zooming in and out on the map.