Giter Site home page Giter Site logo

tmx_starling's Introduction

TMX Maps Support for Starling Framework

Overview

This extension is based on the one created by Shaun Mitchell, and allows a starling game to load and display a TMX Tilemap created using Tiled

The major contributions include:

  • Compatible with Starling v1.3
  • Target is Tiled 0.9.0
  • Ability to use tilesets with margins and spacing
  • Improved performance by using flattened sprites
  • Support for properties
  • Support for Objects and Objectgroups
  • more to come...

This extension is still under development. If you want to contribute, feel free to help out.

Known issues:

  • Can't load tilemaps that use a TSX tileset

Examples

There is an example project included with the extension. Here's one though:

Loading your tilemap using embedded assets and displaying it:

[Embed(source="../../../../assets/example.tmx", mimeType="application/octet-stream")]
private static var exampleTMX:Class;
 	
[Embed(source = "../../../../assets/tmw_desert_spacing.png")]
private static var exampleTileSet:Class;

// (...)

var mapXML:XML = XML(new exampleTMX());
var tilesets:Vector.<Bitmap> = new Vector.<Bitmap>();
tilesets.push(Bitmap(new exampleTileSet()));
			
var mapTMX:TMXTileMap = TMXTileMap.createMap(mapXML, tilesets);
			
for (var i:int = 0; i < mapTMX.layers.length; i++) 
{
    addChild(mapTMX.layers[i].layerSprite);
}

tmx_starling's People

Contributors

borgiani avatar poke646 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.