Eric Rowell
|
f944409a1e
|
new hit detection algo works with images that contain transparent pixels. Devs will need to use the createImageBuffer() method to create a higher precision buffer image
|
2012-08-18 22:02:16 -07:00 |
|
Eric Rowell
|
f53c43d4f7
|
added drawScene() method which only redraws the scene and not the buffer
|
2012-08-16 23:22:07 -07:00 |
|
Eric Rowell
|
e6e488025e
|
hit detection color mapping now takes into account anti-aliasing color variations, which was causing issues when moving the mouse from one shape into another shape which were inside the same group. created getIntersections() method which returns an object with shape and pixel data
|
2012-08-16 23:03:28 -07:00 |
|
Eric Rowell
|
9cdbadc4fd
|
refactored ancestor comparison logic to ensure that container handlers aren't incorrectly executed for mouseover mouseout. Fixed up functional tests
|
2012-08-16 22:03:39 -07:00 |
|
Eric Rowell
|
6a58830df3
|
draw methods now draw on both the front and back buffer by default, unless a canvas is passed as an argument. continued fixing up unit tests. Image width and height are now synced whenever the image object changes.
|
2012-08-15 23:13:50 -07:00 |
|
Eric Rowell
|
bae57488cf
|
added support for image hit detection with new color mapping algo
|
2012-08-14 23:52:53 -07:00 |
|
Eric Rowell
|
02c6c7276f
|
continued prep work for v4.0.0. removed detectionType property because new event engine uses one strategy. added new drawBuffer method so that you can redraw the buffer without redrawing the visible canvas. changed alpha to opacity.
|
2012-08-13 23:06:29 -07:00 |
|
Eric Rowell
|
ef14edede3
|
major refactoring of the event engine to better support new hit detection strategy
|
2012-08-11 23:14:49 -07:00 |
|
Eric Rowell
|
468f8ef2d3
|
checking in first phase of new hit detection algo, which enables high performance event detections even if there are hundreds of thousands of shapes. This is a giant improvement over the previous algo, and is a fairly big architectural change. Since the Animation architecture and API is also changing, I feel that these changes are big enough to warrant a new major version, v4.0.0
|
2012-08-11 16:22:01 -07:00 |
|
Eric Rowell
|
0f1a424840
|
prototyping back buffer hit detection algo
|
2012-08-10 22:33:22 -07:00 |
|
Eric Rowell
|
8c147ee2b5
|
added new performance test in preparation for new hit detection algo investigation
|
2012-08-10 20:48:42 -07:00 |
|
ericdrowell
|
5c898e7da5
|
Merge pull request #63 from jfollas/master
FIxed Stage.toDataURL JPEG issue
|
2012-08-10 10:37:15 -07:00 |
|
Jason Follas
|
1d6acca8f3
|
Fixed flaw in Stage.toDataURL where JPEG layers were hiding lower layers due to the use of black instead of transparent.
|
2012-08-09 22:39:34 -04:00 |
|
Eric Rowell
|
e5d195f9b4
|
temporarily disabled serialization unit tests
|
2012-08-09 11:13:20 -07:00 |
|
Eric Rowell
|
66ba99f9bc
|
hooked drag and drop into animation engine
|
2012-08-09 00:01:21 -07:00 |
|
Eric Rowell
|
58cabf8ddc
|
hooked node transitions and sprite animation into new animation API
|
2012-08-08 23:41:16 -07:00 |
|
Eric Rowell
|
b6db65301c
|
rewrote Animation API to improve flexibility. Animations are no longer tied to the stage. You can now instantiate as many individual animations as you like, and manage them however you like
|
2012-08-04 00:23:56 -07:00 |
|
Eric Rowell
|
9ad9121259
|
Kinetic.Animation is now a class that can be instantiated to better represent animation objects. Rather than creating new animation objects and destroying them each time an animation is started and restarted, the same animation obect is now reused, which should help with performance
|
2012-07-31 23:23:00 -07:00 |
|
Eric Rowell
|
d5eee80c0e
|
changed tempNodes array into a hash to improve performance
|
2012-07-31 21:35:04 -07:00 |
|
Eric Rowell
|
ed8c5ab6b8
|
changing the font size now correctly updates the text data
|
2012-07-31 21:13:25 -07:00 |
|
Eric Rowell
|
b7ac415ea6
|
transition callback is now executed immediately after final node draw
|
2012-07-31 21:01:48 -07:00 |
|
Eric Rowell
|
75b20573cd
|
removed plugins directory because Kinetic will be using a configurator in the near future
|
2012-07-31 20:36:36 -07:00 |
|
Eric Rowell
|
87182d704c
|
fixed bug with stage.remove(layer). layer canvas context is now correctly removed from the dom
|
2012-07-28 22:16:29 -07:00 |
|
Eric Rowell
|
e69c7a9ac1
|
moved Path back to the plugins, and added Geometry utility methods to the Path namespace so that they can be called as a utility methods without instantiating a Path shape
|
2012-07-28 17:37:24 -07:00 |
|
Eric Rowell
|
e82fbfa2b0
|
decided to move Path back into core
|
2012-07-28 16:33:18 -07:00 |
|
Eric Rowell
|
4ea094f459
|
moved path parsing logic to Geometry class
|
2012-07-28 16:29:37 -07:00 |
|
Eric Rowell
|
9631d6e1bb
|
split up methods from the PathHelper class and moved them to Path and Geometry. Path specific methods went to Path, and general purpose geometric utility methods went to the Geometry utility class. TextPath now inherits methods from Path
|
2012-07-28 16:08:14 -07:00 |
|
Eric Rowell
|
c4a359cd48
|
moved drawFunc definition out of the shape initializers as a method to improve space performance
|
2012-07-28 10:46:16 -07:00 |
|
Eric Rowell
|
a67c1e70b1
|
fixed Star plugin docs
|
2012-07-28 09:59:17 -07:00 |
|
ericdrowell
|
edabaf270e
|
Merge pull request #58 from jfollas/master
Enhancements to Path/TextPath
|
2012-07-28 09:57:14 -07:00 |
|
Eric Rowell
|
5b323bea40
|
merged with jfollas's TextPath updates, fixed remaining unit, manual, and performance tests, and fixed stroking logic
|
2012-07-28 09:55:21 -07:00 |
|
Jason Follas
|
58f0b6f5b1
|
More JSDoc work
|
2012-07-28 12:43:03 -04:00 |
|
Jason Follas
|
d6933ecb53
|
Corrected JSDoc text to refer to Kinetic.Plugins.TextPath instead of Kinetic.Text
|
2012-07-28 12:04:04 -04:00 |
|
Jason Follas
|
8d535556d7
|
Changed namespace for "plugin" shapes to Kinetic.Plugins. *This is a breaking change!*
Fixed unit tests. Extracted Path parsing logic into PathHelper so that it's not tied to a particular shape.
|
2012-07-27 22:51:18 -04:00 |
|
Eric Rowell
|
1585cc3620
|
fixed tests
|
2012-07-27 18:41:15 -07:00 |
|
Jason Follas
|
5d77471f7e
|
TextPath extends Shape instead of Path. Extracted common path functions into PathHelper.js. Updated unit tests.
|
2012-07-27 12:25:36 -04:00 |
|
Eric Rowell
|
eccd8b7e64
|
silky smooth animations. got rid of layer and event throttling, and instead created dragThrottling. The dynamic animation frame rates already handles optimized animation drawing, we just needed to add manual throttling to drag and drop. Animations are now very smooth, and drag and drop is still smooth
|
2012-07-26 23:26:58 -07:00 |
|
Eric Rowell
|
ce3b98ee9c
|
added some performance tweaks and polished up code here and there
|
2012-07-26 22:58:38 -07:00 |
|
Eric Rowell
|
c26a1ae5d5
|
merged jfollas's new TextPath shape, and moved non-primative shapes to the plugins folder as shape plugins
|
2012-07-24 23:18:46 -07:00 |
|
Eric Rowell
|
4410ce9982
|
fixed bug with fillText in Shape class
|
2012-07-24 22:34:53 -07:00 |
|
Eric Rowell
|
ebf324484d
|
updated Shape constructor docs
|
2012-07-23 22:43:04 -07:00 |
|
Eric Rowell
|
5f7b6018fa
|
finally got around to documenting the Node, Group, Stage, Shape, Layer, and Container constructors
|
2012-07-23 22:39:55 -07:00 |
|
Eric Rowell
|
3997d74317
|
updated more docs
|
2012-07-23 00:00:22 -07:00 |
|
Eric Rowell
|
3617d8ef5f
|
updated docs
|
2012-07-22 23:30:56 -07:00 |
|
ericdrowell
|
f7e233100a
|
Merge pull request #55 from imakewebthings/patch-1
Fix getStrokeColor -> getStroke in Shape docs.
|
2012-07-22 21:03:34 -07:00 |
|
Caleb Troughton
|
0a1d632900
|
Fix getStrokeColor -> getStroke in Shape docs.
|
2012-07-23 11:35:06 +08:00 |
|
Eric Rowell
|
da7429fb7b
|
fixed bug with setSize method in Image object, and tweaked shape caching performance test to demonstrate a 4x drawing performance boost
|
2012-07-22 17:05:45 -07:00 |
|
Eric Rowell
|
781a2ebe60
|
fixed a few bugs discovered with integration testing. added some performance tweaks
|
2012-07-21 21:09:02 -07:00 |
|
Eric Rowell
|
f1cb695e1f
|
you can now cache regions of a node outside of the stage viewport. added more unit tests
|
2012-07-21 15:38:25 -07:00 |
|
Eric Rowell
|
d74ec8ab06
|
fixed new bug with stage toDataURL that was introduced with the new Canvas class, and added new filter unit tests
|
2012-07-21 13:29:22 -07:00 |
|