Giter Site home page Giter Site logo

openfl-animate-atlas's Introduction

WARNING: Under Development, API CAN BE CHANGED IN FUTURE!

Tested on Adobe Animate 2020

Tile

Juggler.init(); //Initialize update animation class

var animateTileAtlasSheet:AnimateTileAtlasSheet = cast AnimateAtlasAssetManager.loadAssetSync("assets/ninja-girl", AnimateTileAtlasSheet);
var tilemap:Tilemap = new Tilemap(stage.stageWidth, stage.stageHeight);
tilemap.smoothing = false;
addChild(tilemap);

var animation = new AnimateAtlasTile(animateTileAtlasSheet); //I am planning to make the API similar to flash's DisplayObject API.
animation.x = stage.stageWidth / 2;
animation.y = stage.stageHeight / 2;
tilemap.addTile(animation);
Juggler.add(animation); //Add animation to animation class, make sure to call "Juggler.remove(animation);" when you're done with the animation.

//Note: I plan to delete Juggler in the long run so anyone can create their own animation update solution.

Sprite

var animateSpriteAtlasSheet:AnimateSpriteAtlasSheet = cast AnimateAtlasAssetManager.loadAssetSync("assets/ninja-girl", AnimateSpriteAtlasSheet);

var animation = new AnimateAtlasSprite(animateSpriteAtlasSheet);
animation.x = stage.stageWidth / 2;
animation.y = stage.stageHeight / 2;
addChild(animation);

Button

var animateSpriteAtlasSheet:AnimateSpriteAtlasSheet = cast AnimateAtlasAssetManager.loadAssetSync("assets/button", AnimateSpriteAtlasSheet);

var button = new AnimateAtlasButton(animateSpriteAtlasSheet);
button.x = stage.stageWidth / 2;
button.y = stage.stageHeight / 2;
addChild(button);

Benchmark: http://openfl-animate-atlas.surge.sh/

Important: Optimized atlases are not supported!

openfl-animate-atlas's People

Contributors

barisyild avatar junsred avatar tsanalp 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.