Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 503 Bytes

File metadata and controls

21 lines (16 loc) · 503 Bytes

AshLoom

A Loom port of the Ash entity system framework.

Loom: https://www.loomsdk.com

Ash: http://www.ashframework.org

Features

  • Most classes ported from ActionScript.
  • Uses Loom's delegates instead of events.

Usage

Usage is identical to the original ActionScript version except for listening, where delegates are used instead of events:

var nodeList : NodeList = engine.getNodeList(MyNode);
nodeList.nodeAdded += onNodeAdded;

private function onNodeAdded(node : Node) : void
{
}