Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
fixed code spans in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Sep 29, 2011
1 parent 88f08d3 commit 572000e
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,41 +49,41 @@ For those familiar with Corona, usage is very similar to [transition.to()](http:

## Easing

Corona uses a different signature for its built-in easing functions than the ones that come with gtween, but gtween can use them with the @transitionEase@ property (see the example above) to tell gtween.lua to use one of the [easing functions](http://developer.anscamobile.com/content/easing) designed for use with Corona's [transitions](http://developer.anscamobile.com/content/transitions). Use @ease@ (same as ActionScript) to use one of gtween's easing functions.
Corona uses a different signature for its built-in easing functions than the ones that come with gtween, but gtween can use them with the `transitionEase` property (see the example above) to tell gtween.lua to use one of the [easing functions](http://developer.anscamobile.com/content/easing) designed for use with Corona's [transitions](http://developer.anscamobile.com/content/transitions). Use `ease` (same as ActionScript) to use one of gtween's easing functions.

The following easing functions are included in gtween.lua, and should be used with the @ease@ property. Some overlap Corona's easing functions, while others are new.
The following easing functions are included in gtween.lua, and should be used with the `ease` property. Some overlap Corona's easing functions, while others are new.

* @gtween.easing.inBack@
* @gtween.easing.outBack@
* @gtween.easing.inOutBack@
* @gtween.easing.inBounce@
* @gtween.easing.outBounce@
* @gtween.easing.inOutBounce@
* @gtween.easing.inCircular@
* @gtween.easing.outCircular@
* @gtween.easing.inOutCircular@
* @gtween.easing.inCubic@
* @gtween.easing.outCubic@
* @gtween.easing.inOutCubic@
* @gtween.easing.inElastic@
* @gtween.easing.outElastic@
* @gtween.easing.inOutElastic@
* @gtween.easing.inExponential@
* @gtween.easing.outExponential@
* @gtween.easing.inOutExponential@
* @gtween.easing.noneLinear@
* @gtween.easing.inQuadratic@
* @gtween.easing.outQuadratic@
* @gtween.easing.inOutQuadratic@
* @gtween.easing.inQuartic@
* @gtween.easing.outQuartic@
* @gtween.easing.inOutQuartic@
* @gtween.easing.inQuintic@
* @gtween.easing.outQuintic@
* @gtween.easing.inOutQuintic@
* @gtween.easing.inSine@
* @gtween.easing.outSine@
* @gtween.easing.inOutSine@
* `gtween.easing.inBack`
* `gtween.easing.outBack`
* `gtween.easing.inOutBack`
* `gtween.easing.inBounce`
* `gtween.easing.outBounce`
* `gtween.easing.inOutBounce`
* `gtween.easing.inCircular`
* `gtween.easing.outCircular`
* `gtween.easing.inOutCircular`
* `gtween.easing.inCubic`
* `gtween.easing.outCubic`
* `gtween.easing.inOutCubic`
* `gtween.easing.inElastic`
* `gtween.easing.outElastic`
* `gtween.easing.inOutElastic`
* `gtween.easing.inExponential`
* `gtween.easing.outExponential`
* `gtween.easing.inOutExponential`
* `gtween.easing.noneLinear`
* `gtween.easing.inQuadratic`
* `gtween.easing.outQuadratic`
* `gtween.easing.inOutQuadratic`
* `gtween.easing.inQuartic`
* `gtween.easing.outQuartic`
* `gtween.easing.inOutQuartic`
* `gtween.easing.inQuintic`
* `gtween.easing.outQuintic`
* `gtween.easing.inOutQuintic`
* `gtween.easing.inSine`
* `gtween.easing.outSine`
* `gtween.easing.inOutSine`

## Unsupported features

Expand Down

0 comments on commit 572000e

Please sign in to comment.