Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stuartpb/podtable
An animation platform for podcasts
https://github.com/stuartpb/podtable
Last synced: 7 days ago
JSON representation
An animation platform for podcasts
- Host: GitHub
- URL: https://github.com/stuartpb/podtable
- Owner: stuartpb
- Created: 2013-04-27T00:11:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-22T16:37:35.000Z (over 8 years ago)
- Last Synced: 2024-04-09T22:14:51.206Z (9 months ago)
- Language: JavaScript
- Homepage: http://stuartpb.github.io/podtable/podtable.html
- Size: 455 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# podtable
An isometric animation system
Perspective is the angle of the Z axis in pi/2 radians.
Positions are interpreted as a left-hand coordinate system, with X as the
horizontal axis (Y going up and Z going towards the screen).Origin is the point on the 2D backdrop that represents (0,0,0).
## Data definition
Assets are defined in "setting.yaml", and sequences are defined in
"episode.yaml". (This should be defacto and not systematic, but to start it'll
probably be hardcoded)### Setting
#### actors
Object of named sprite templates.
In the future, this will support states and animations, but for now, it's just:
- src: The path to the image.
- width: The width of the image (in pixels).
- height: The height of the image (in pixels).
- origin: The point on the image (in pixels) to center positions on.
Defaults to width/2. The Y and Z coordinates, when not specified, default to
zero.