Commit Graph

58 Commits

Author SHA1 Message Date
fernandocanocapdepon
65349c521a Object like parameter in Bitmap contructor 2016-04-14 08:11:41 +02:00
Masahiro Wakame
b92388d6e9 Merge pull request #8495 from heroboy/patch-1
update easeljs: Conatiner.addChild
2016-03-26 21:43:59 +09:00
vvakame
7de6c3dd94 Merge branch 'master' into rename-repo-url 2016-03-17 21:06:54 +09:00
vvakame
14fe4313f4 replace internal module to namespace 2016-03-17 02:18:10 +09:00
vvakame
56295f5058 replace https://github.com/borisyankov/DefinitelyTyped to https://github.com/DefinitelyTyped/DefinitelyTyped 2016-03-17 00:55:26 +09:00
heroboy
d3489ba456 add test addChild 2016-03-11 10:14:17 +08:00
heroboy
bd4256fcbc format code 2016-03-11 10:04:44 +08:00
heroboy
cae6927e01 update addChild. 2016-03-11 10:01:35 +08:00
vvakame
4de74cb527 normalize line ending (CRLF -> LF) 2016-02-16 01:20:30 +09:00
Aya Morisawa
13dc65314e Fix #448 2016-01-13 00:03:08 +09:00
tlein
4b57196684 Add setStrokeDash to easeljs 2015-12-04 21:40:29 -06:00
Jason Saelhof
abc4706bc9 removed whitespace changes 2015-11-23 16:45:09 -07:00
Jason Saelhof
5c0d1a6d74 Updated the type of the "next" parameter in SpriteSheetBuilder's addAnimation method. From the easeljs docs: "Specifies the name of the animation to continue to after this animation ends. You can also pass false to have the animation stop when it ends. By default it will loop to the start of the same animation." 2015-11-23 16:40:50 -07:00
Jason Saelhof
7b9ecbce87 Fix type of createjs.Ticker.paused 2015-08-26 14:07:04 -06:00
Pedro Ferreira
89aedb70c3 update createjs libraries:
- start using union types
    - remove some methods from Container/Bitmap (that are defined in the base class)
    - have FlashAudioLoader extend from AbstractLoader
2015-01-18 11:11:23 +00:00
Pedro Ferreira
fa9bb4caf2 - remove deprecated classes definitions (BitmapAnimation / Command)
- remove set() and setTransform() from BitmapText since they're defined in the base class DisplayObject
2014-12-22 04:03:20 +00:00
Pedro Ferreira
e703cb1208 - fix, add missing types to some methods/properties of createjs definitions 2014-12-18 16:38:54 +00:00
Pedro Ferreira
0e1ce7b847 - update the version number tweenjs (to v0.6)
- fix, add the Graphics commands to a module with the same name (Graphics)
2014-12-13 17:28:33 +00:00
Pedro Ferreira
6434a9b187 - update preloadjs to v0.6 2014-12-13 04:27:19 +00:00
Pedro Ferreira
17d36657b8 - add new utilities functions (extend / promote)
- add missing properties to some classes for easel 0.8
2014-12-13 03:34:01 +00:00
Pedro Ferreira
4af0cd55b0 - complete the update of easeljs v0.8 2014-12-11 18:37:57 +00:00
Pedro Ferreira
2e1a0d8874 - start updating the easeljs definitions, for the 0.8 release 2014-12-11 17:43:43 +00:00
Joe Schafer
556ecf63a5 easeljs: fix decompose return type
With no args, Matrix2D decompose returns a new object with similar
properties to a DisplayObject.

http://www.createjs.com/Docs/EaselJS/classes/Matrix2D.html#method_decompose
2014-11-25 00:33:04 -05:00
Joe Schafer
2e39d2b190 easeljs: add decompose with no args
With no args, Matrix2D decompose returns a new object.

http://www.createjs.com/Docs/EaselJS/classes/Matrix2D.html#method_decompose
2014-11-25 00:04:57 -05:00
Joe Schafer
963fa11a66 easeljs: add Stage to Ticker.addEventListener
Stage is supported as an eventListener for convenience.  For example:

    createjs.Ticker.addEventListener("tick", stage);

See http://www.createjs.com/Docs/EaselJS/classes/Ticker.html
2014-11-19 23:07:53 -05:00
Jason Jarrett
e176a57f0d Removing circular dependency for createjs
- Should help with  issue #2037
- This issue was introduced in #2000
2014-04-14 08:47:55 -07:00
satoru kimura
6bd86406f6 Renamed definition file for intelligibility. 2014-04-09 13:09:16 +09:00
s_kimura
380322af6b update to EaselJS v0.7.1. 2014-01-19 17:16:47 +09:00
Satoru Kimura
05342a6952 Fixed several errors with TypeScript0.9.5. 2013-12-07 15:50:12 +09:00
s_kimura
cea8091140 fixes bugs and discard redundant changes that have received pointed out in code review.
put it back the SpriteSheetFrame and TickerEvent class in easelJS.
2013-11-29 13:05:15 +09:00
s_kimura
5f6f23fd76 added type information in the test code. 2013-11-28 11:49:50 +09:00
s_kimura
b057108689 fixed several syntax errors. 2013-11-28 11:36:03 +09:00
s_kimura
8ba6fb3237 Updated EaselJS definitions to v0.7.0 and TweenJS, SoundJS definitions to v0.5,0 and PreloadJS definitions to v0.4.0 2013-11-27 14:48:35 +09:00
Chris Smith
f4ff0e3bb4 Fixed missing return type 2013-11-25 22:42:28 -08:00
Chris Smith
a3812e895f Added comment on Sprite to avoid IntelliJ thinking it was deprecated 2013-11-24 19:52:16 -08:00
Chris Smith
7bca55dd1d Updated EaselJS definitions to v0.7 and TweenJS definitions to v0.5 2013-11-22 22:41:11 -08:00
Chris Smith
6d73159722 Fixed property name on Matrix2D from 'atx' to 'tx' 2013-11-20 22:40:23 -08:00
basarat
c41200f038 Update easeljs.d.ts 2013-10-03 13:47:58 +10:00
golear
7de857e379 Added mouseMoveOutside to Stage class
Stage.mouseMoveOutside was missing.  Added it.
2013-10-02 21:00:01 -05:00
cmandlbaur
3678d429c6 Added support for the noImplicitAny flag for EaselJS, Greensock,
PreloadJS and TweenJS.
2013-09-09 20:25:23 +02:00
Boris Yankov
f677cca98d Multiple bool => boolean fixes 2013-08-07 18:02:05 +03:00
Boris Yankov
dd35f69637 Big replacement: bool with boolean 2013-08-07 16:59:39 +03:00
Karthikeyan VJ
fb6a94f58c Changed arguments to optional for Point and Rectangle 2013-06-27 20:52:23 +03:00
Diullei Gomes
41aee7c70a bug fix - easeljs and tweenjs 2013-06-21 20:25:26 -03:00
studiollama
5cbef5988b Added gotoAndStop to BitmapAnimation in easeljs.d.ts and declare to module
Added the gotoAndStop method that is available in easeljs-0.6.1 and also included the "declare" before "module createjs" which allows it to be used with TypeScript 0.9
2013-06-12 10:41:14 -06:00
Karthikeyan VJ
2e1af5bd98 Update easeljs.d.ts
event properties for "tick" event
2013-06-06 16:41:22 +03:00
Josh Tynjala
6cf667b5dc EaselJS: MouseEvent should have the EventDispatcher mixins 2013-03-27 17:05:00 -07:00
Josh Tynjala
6acbdec7da easeljs: fixed signature of static extractFrame() on SpriteSheetUtils 2013-03-08 04:39:01 -08:00
Josh Tynjala
be546bbcae converted random tabs in easejs to match the majority of spaces 2013-03-06 17:27:03 -08:00
Josh Tynjala
c2b36b521a Added missing easeljs EventDispatcher mixins on Ticker 2013-03-06 17:25:49 -08:00