Richard Davey
|
ea0af28983
|
Default preUpdate function.
|
2017-04-04 23:59:27 +01:00 |
|
Richard Davey
|
b5e8e183b8
|
Animation Component added.
|
2017-04-04 23:59:16 +01:00 |
|
Richard Davey
|
86d048b079
|
Lots of tidying up + preUpdate call added back in.
|
2017-04-04 23:59:02 +01:00 |
|
Richard Davey
|
05bbfd9bd8
|
Animation Manager boot state call.
|
2017-04-04 23:58:45 +01:00 |
|
Richard Davey
|
8ec9061b43
|
Removed 'group' / 'parent' argument and forced to the State children component. You should use 'make' if you wish to add elsewhere.
|
2017-04-04 23:58:33 +01:00 |
|
Richard Davey
|
f79dcd0a07
|
Removed debug code.
|
2017-04-04 23:57:44 +01:00 |
|
Richard Davey
|
96a7811df7
|
jshint fixes
|
2017-04-04 23:57:37 +01:00 |
|
Richard Davey
|
7157d577f5
|
Updated GetFrames
|
2017-04-04 16:50:28 +01:00 |
|
Richard Davey
|
679dd1091e
|
Lots more work on the Animation Manager. New Animation format defined, properties added, frame splitter added and starting to plan out update loop.
|
2017-04-04 16:32:33 +01:00 |
|
Richard Davey
|
acea677424
|
Added ability to load HTML files into textures.
|
2017-04-04 14:54:22 +01:00 |
|
Richard Davey
|
6f115a60e3
|
Added ability for the Loader to handle loading SVG files and creating Images from them (for use as Sprite textures)
|
2017-04-04 02:54:27 +01:00 |
|
Richard Davey
|
9c3ce047b8
|
Fixed typo in RectToTriangle and added in easy bounding box escape checks.
|
2017-04-04 01:22:23 +01:00 |
|
Richard Davey
|
3c12e15054
|
Added Rectangle to Triangle, and Triangle to Triangle intersection functions. Detects for face intersection and also point within point (so a triangle fully enclosed inside a rectangle for example)
|
2017-04-04 01:04:05 +01:00 |
|
Richard Davey
|
4914895509
|
Added Triangle and Rectangle decomposition functions to convert them into an array of points.
|
2017-04-04 01:03:28 +01:00 |
|
Richard Davey
|
895f7b054a
|
Updated ContainsArray to include the returnFirst argument.
|
2017-04-04 01:02:56 +01:00 |
|
Richard Davey
|
b7c895c862
|
Added Triangle.CenterOn to place a triangle on an xy coord.
|
2017-04-04 01:02:41 +01:00 |
|
Richard Davey
|
4ec898aaa9
|
Added Phaser.Geom.Triangle.BuildFromPolygon to convert polygon into triangle objects.
Added latest build of Earcut (unminified + license)
|
2017-04-03 23:30:14 +01:00 |
|
Richard Davey
|
dcab0e1e18
|
Added Triangle.ContainsArray method, which is an optimized method of checking a whole array of points to see if they lie within a triangle.
|
2017-03-31 04:58:28 +01:00 |
|
Richard Davey
|
3d323836be
|
Added Line.getPointA and getPointB methods.
|
2017-03-31 04:58:03 +01:00 |
|
Richard Davey
|
3618214331
|
Added TriangleToLine intersection test (based on the new LineToLine method)
|
2017-03-31 04:57:49 +01:00 |
|
Richard Davey
|
a2ba500cbe
|
Changed the LineToLine intersection method to use the version created by Paul Bourke (smaller, faster, simpler).
|
2017-03-31 04:33:51 +01:00 |
|
Richard Davey
|
e6c431bfed
|
Added Triangle to Circle intersection method.
|
2017-03-31 03:09:06 +01:00 |
|
Richard Davey
|
bda50e9d27
|
Added Triangle.getLineA, B and C because we're using those so often in various methods it just makes sense.
|
2017-03-31 03:08:54 +01:00 |
|
Richard Davey
|
08d0398f52
|
Fixed Graphics.strokeLineShape
|
2017-03-31 02:34:43 +01:00 |
|
Richard Davey
|
d3830445cc
|
Added Triangle left, right, top and bottom setters.
|
2017-03-31 02:34:32 +01:00 |
|
Richard Davey
|
d61bcad272
|
Added LineToCircle intersection method.
|
2017-03-31 02:34:13 +01:00 |
|
Richard Davey
|
7bcdf669b8
|
Added Line.Offset, Triangle.Offset and Triangle.Equals.
|
2017-03-31 01:40:38 +01:00 |
|
Richard Davey
|
b3bced081a
|
Added Triangle.Random to get a uniformly distributed point from within a Triangle.
Added RandomTriangle Action.
|
2017-03-31 01:21:55 +01:00 |
|
Richard Davey
|
e8b039af36
|
Added PlaceOnTriangle Action.
|
2017-03-31 00:46:27 +01:00 |
|
Felipe Alfonso
|
4228a5b634
|
Fixed rendering issue with arc command
|
2017-03-30 10:06:35 -03:00 |
|
Felipe Alfonso
|
98349a08b8
|
Fixed text rendering issue
|
2017-03-30 09:48:24 -03:00 |
|
Richard Davey
|
168ce84a01
|
GameObject.destroy calls Children.remove.
|
2017-03-30 13:28:40 +01:00 |
|
Richard Davey
|
c07ef79824
|
New Triangle methods: BuildRight, BuildEquilateral, Clone, CopyFrom, Rotate, RotateAroundPoint and RotateAroundXY.
|
2017-03-30 13:19:31 +01:00 |
|
Richard Davey
|
12e075ad10
|
Added Triangle.Area, Triangle.CircumCenter and Triangle.CircumCircle methods, as they're all really useful when dealing with Triangles.
|
2017-03-30 02:40:23 +01:00 |
|
Richard Davey
|
dc115121c4
|
Added Triangle.Centroid and Triangle.InCenter methods for determining the centers of a Triangle shape.
|
2017-03-30 01:51:18 +01:00 |
|
Richard Davey
|
47e6cff967
|
Added Graphics.fillPoint, fillPointShape and lineBetween methods.
|
2017-03-30 01:47:15 +01:00 |
|
Richard Davey
|
709819d601
|
Fixed triangle properties.
|
2017-03-30 00:45:17 +01:00 |
|
Richard Davey
|
a8308698bb
|
Added Triangle geometry, and Triangle.contains and containsPoint methods.
|
2017-03-30 00:45:17 +01:00 |
|
Richard Davey
|
7ef33d005b
|
Added ability to pass Geometry directly to the Graphics methods.
|
2017-03-30 00:45:17 +01:00 |
|
Felipe Alfonso
|
0fedb3b390
|
Fixed RGB and alpa per point on a path
|
2017-03-29 20:44:07 -03:00 |
|
Richard Davey
|
dccda7a5b3
|
PlaceOnRectangle now uses MarchingAnts and has a new shift argument.
|
2017-03-29 20:27:36 +01:00 |
|
Richard Davey
|
081b2816ce
|
Added option to have step or quantity in MarchingAnts method.
|
2017-03-29 19:53:14 +01:00 |
|
Richard Davey
|
8664c278f1
|
PlaceOnRectangle Action added (using PerimeterPoint at the moment, but will swap to MarchingAnts).
|
2017-03-29 17:11:26 +01:00 |
|
Richard Davey
|
e612b2c0f4
|
Added Rectangle.MarchingAnts method.
|
2017-03-29 17:10:56 +01:00 |
|
Richard Davey
|
3b79c2cf52
|
Added default lineStyle alpha value.
|
2017-03-29 16:05:05 +01:00 |
|
Richard Davey
|
bf695ee6d1
|
Added PlaceOnCircle and PlaceOnLine Actions.
|
2017-03-29 16:04:51 +01:00 |
|
Richard Davey
|
18fa6292a6
|
Graphics objects now just take a config object, not a position.
Graphics objects can set default stroke and fill styles, which are re-applied after a clear.
|
2017-03-29 15:06:06 +01:00 |
|
Richard Davey
|
b3b495e53c
|
Added Rectangle.PerimeterPoint method for getting the point on the perimeter of a rectangle based on the given angle.
|
2017-03-29 15:05:29 +01:00 |
|
Richard Davey
|
032f6e7084
|
Added Rectangle.centerX and centerY.
|
2017-03-29 15:05:06 +01:00 |
|
Richard Davey
|
d774757c06
|
Preparing for centerX/Y options.
|
2017-03-29 01:47:17 +01:00 |
|