Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richardlord/Actionscript-Toolkit
Various bits of useful Actionscript code that I've released in the past, grouped together in one place.
https://github.com/richardlord/Actionscript-Toolkit
Last synced: 3 months ago
JSON representation
Various bits of useful Actionscript code that I've released in the past, grouped together in one place.
- Host: GitHub
- URL: https://github.com/richardlord/Actionscript-Toolkit
- Owner: richardlord
- Created: 2012-01-08T16:46:48.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-01-08T16:51:33.000Z (almost 13 years ago)
- Last Synced: 2024-06-23T20:45:01.516Z (5 months ago)
- Language: ActionScript
- Homepage: http://www.richardlord.net/
- Size: 176 KB
- Stars: 43
- Watchers: 13
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
- awesome-actionscript-sorted - Actionscript-Toolkit - Various bits of useful Actionscript code that I've released in the past, grouped together in one place. (Utilities / Other Utilities)
README
h1. A random collection of useful code
This project contains various useful Actionscript code from "my blog":http://www.richardlord.net/blog
h2. Included
* "Key Poll":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/input/KeyPoll.as - for checking if any key is down or up at a specific time.
* "Finite State Machine":https://github.com/richardlord/Actionscript-Toolkit/tree/master/src/net/richardlord/fsm - A simple finite state machine for Actionscript 3 games.
* "Weak Ref":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/utils/WeakRef.as - creates a weak reference to an object.
* "Object Pool":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/utils/ObjectPool.as - a simple object pool for any and all object types.
* "Singleton":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/utils/singleton.as - a simple factory to create and maintain a single instance of any class or classes.
* "Function Utils":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/utils/FunctionUtils.as - utilities to modify a function signature.
* "Math Utils":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/utils/MathUtils.as - utilities for changing between degrees and radians and for getting random numbers.
* "Construct":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/utils/construct.as - a function to call the constructor of a class (function.apply can't be used to call the constructor).
* "Hit Test":https://github.com/richardlord/Actionscript-Toolkit/blob/master/src/net/richardlord/collisions/HitTest.as - performs collision checking between two display objects by drawing them into a bitmap and checking for an overlap.h2. License
All code is covered by the MIT open-source license. The license text is included at the top of each source code file.