Skip to content
TypeScript tweening engine
JavaScript TypeScript CSS Python Shell
Find file
Pull request Compare This branch is 18 commits ahead, 39 commits behind tweenjs:master.
Latest commit ca05f19 @edsilv Merge pull request #1 from BSick7/master
Added unify.

README.md

tween.ts

TypeScript version of http://github.com/sole/tween.js

Enables use as an AMD module in TypeScript:

import Tween = require("./Tween");

Uses browserify with a deamdify transformer to build tween.min.js which can be included in a page using a regular script tag:

<script src="../build/tween.min.js"></script>

(See examples)

installation

bower install tween.ts

notes

If you get this error when compiling:

'this' cannot be referenced within module bodies

Comment out this line at the top of Tween.ts:

window.TWEEN = this;

It's purely for the js examples, and not necessary for TypeScript apps.

http://typescript.codeplex.com/workitem/1951

Something went wrong with that request. Please try again.