Richard Davey
|
6c2b45d99f
|
Use setQuad
|
2022-10-09 21:40:22 +01:00 |
|
Jonah Jeleniewski
|
e8c8be0385
|
Let texture scaleMode override the antialias setting under CANVAS
|
2022-06-11 18:07:29 +10:00 |
|
Richard Davey
|
a4d8e87095
|
Fixed lint errors
|
2022-05-10 17:06:53 +01:00 |
|
T.J. L
|
ff4ef2872b
|
Don't overwrite the return values from require()
|
2022-04-02 01:49:19 -07:00 |
|
Richard Davey
|
59fbcc5ca3
|
Updated copyright year
|
2022-02-28 14:29:51 +00:00 |
|
Richard Davey
|
a4308cfa3a
|
Skips Canvas drawImage calls if invalid frame sizes given. Fix #5951
|
2022-02-03 16:44:24 +00:00 |
|
Richard Davey
|
93db763f69
|
Merge pull request #5340 from 16patsle/Fix_object_types
Add more specific 'object' types, including GO Configs
|
2021-09-23 15:30:43 +01:00 |
|
Richard Davey
|
332d9c85cb
|
BlitterWebGLRenderer was calling an out-dated function setRenderDepth instead of addToRenderList
|
2021-01-14 17:09:04 +00:00 |
|
Richard Davey
|
1c8662dc1f
|
Call addToRenderList
|
2021-01-07 14:52:08 +00:00 |
|
Richard Davey
|
00d8b6a009
|
Invoke camera.addToRenderList method
|
2021-01-07 12:31:31 +00:00 |
|
Patrick Sletvold
|
f1836738a0
|
Merge remote-tracking branch 'origin/master' into Fix_object_types
|
2020-12-10 11:23:35 +01:00 |
|
Richard Davey
|
0ee1338765
|
Better post pipeline call (less code)
|
2020-11-26 09:51:40 +00:00 |
|
Richard Davey
|
d2e2e86ef1
|
Updated accessor
|
2020-11-23 16:22:11 +00:00 |
|
Richard Davey
|
ec5da6930c
|
Added post pipeline support to all Game Objects
|
2020-11-23 16:17:13 +00:00 |
|
Richard Davey
|
417f7684c3
|
More integer to number changes
|
2020-11-23 10:32:00 +00:00 |
|
Richard Davey
|
02c34cd64e
|
Replace integer with number
|
2020-11-23 10:22:13 +00:00 |
|
Richard Davey
|
eee3feb667
|
Pass Game Object to batchQuad
|
2020-11-09 13:19:31 +00:00 |
|
Richard Davey
|
d3c70002ea
|
Removed use of _tempMatrix from all renderers
|
2020-11-06 09:44:29 +00:00 |
|
Richard Davey
|
4ba2b0eb7b
|
All swapped to using renderer matrices to make pipelines smaller
|
2020-10-28 16:52:59 +00:00 |
|
Patrick Sletvold
|
c1d63d32dd
|
Add Config typedefs for a bunch of GO Creators
|
2020-10-03 10:40:24 +02:00 |
|
Richard Davey
|
6a966e3f3b
|
Removed interpolationPercentage parameter from all render methods, as it has never been used.
|
2020-09-14 15:33:58 +01:00 |
|
Richard Davey
|
d198818d80
|
Game Objects now call the new Pipeline Manager methods directly
|
2020-09-09 13:05:18 +01:00 |
|
Richard Davey
|
b4f0c9fde2
|
Uses setGameObject to support Light2D
|
2020-07-16 15:15:33 +01:00 |
|
Richard Davey
|
446389bb4d
|
The Blitter Game Object WebGL Renderer function has been updated to support multi-texture units.
|
2020-07-15 16:53:25 +01:00 |
|
Jason Kwok
|
87bf4bd648
|
Fixed this return types for Phaser.GameObjects.Bob
|
2020-01-26 20:25:26 +08:00 |
|
Richard Davey
|
ff65e69cd1
|
Changed copyright date to 2020
|
2020-01-15 12:07:09 +00:00 |
|
Richard Davey
|
1a42c54398
|
Set image smoothing based on renderer or scale mode.
|
2019-10-01 16:10:50 +01:00 |
|
Hua
|
8a9e74ffe9
|
Add tint feature of bob
|
2019-10-01 10:17:14 +08:00 |
|
Rex
|
7795713ab5
|
Set dirty flag only when render state of bob is changed
|
2019-09-21 20:15:56 +08:00 |
|
Richard Davey
|
9959dce57e
|
Passing a Frame object to Bob.setFrame would fail, as it expected a string or integer. It now checks the type of object, and if a Frame it checks to make sure it's a Frame belonging to the parent Blitter's texture, and if so sets it. Fix #4516
|
2019-05-17 14:00:39 +01:00 |
|
Richard Davey
|
c91ed91ce3
|
License link update
|
2019-05-10 16:15:04 +01:00 |
|
Richard Davey
|
e017691c68
|
The ScaleMode Component has been removed from every Game Object, and along with it the scaleMode property and setScaleMode method. These did nothing anyway as they were not hooked to the render pipeline and scale mode should be set on the texture, not the Game Object. Fix #4413
|
2019-03-24 23:07:27 +00:00 |
|
Richard Davey
|
eb9ed3463f
|
Lots of namespace and jsdoc fixes
|
2019-02-01 18:02:58 +00:00 |
|
Richard Davey
|
348306cafb
|
Lots more jsdoc fixes and new documentation
|
2019-01-31 14:47:50 +00:00 |
|
Richard Davey
|
aa341854c7
|
Happy New Year
|
2019-01-15 16:20:22 +00:00 |
|
Richard Davey
|
4b27b37a0c
|
Added texture and unit arguments to batchQuad and batchTri , fixing the y2k bug.
|
2018-12-12 11:08:52 +00:00 |
|
Richard Davey
|
6f8759c186
|
Whenever Camera.roundPixels was enabled it would use a bitwise operation to truncate the float (x |= 0 ) - this has been replaced across all files that used it, with a call to Math.round instead. This gives far better results when zooming cameras both in and out of a Scene, stopping thin gaps appearing between closely packed Game Objects.
|
2018-11-30 10:27:25 +00:00 |
|
Richard Davey
|
4b1c762296
|
Updated @memberOf to @memberof
|
2018-10-10 10:49:13 +01:00 |
|
Richard Davey
|
dedc939fdd
|
initPipeline now defaults to the Texture Tint Pipeline if nothing else is specified.
|
2018-09-05 11:19:02 +01:00 |
|
Richard Davey
|
26cc84522d
|
The CanvasRenderer.BlitImage function has been removed, as has the associated blitImage property from the Canvas Renderer as they're no longer used.
|
2018-08-06 15:29:27 +01:00 |
|
Richard Davey
|
fc0dc13930
|
Removed use of currentBlendMode and currentAlpha
|
2018-08-03 01:53:51 +01:00 |
|
Richard Davey
|
7e55d5adac
|
BlitterCanvasRenderer would fail to render a Bob in Canvas mode if it was flipped
|
2018-07-29 12:09:03 +01:00 |
|
Richard Davey
|
4481795d32
|
Swapped to using getX / getY
|
2018-07-27 00:53:00 +01:00 |
|
Richard Davey
|
8873bdcbf6
|
Fixed pipeline method call
|
2018-07-26 23:50:54 +01:00 |
|
Richard Davey
|
106e32a4f5
|
Removed un-used imports
|
2018-07-19 13:26:11 +01:00 |
|
Richard Davey
|
ec5bd1912e
|
GameObject.willRender now takes a Camera as its only argument and uses it within the check. This has allowed me to remove 23 duplicate checks spread across the various Game Objects, all of which did the same thing, saving both KB and CPU time as the flags were being checked twice in most cases.
|
2018-07-19 13:19:02 +01:00 |
|
Richard Davey
|
5ba80defb7
|
Pass GO to setPipeline
|
2018-07-11 16:23:44 +01:00 |
|
Richard Davey
|
434c8d1413
|
Fixed issue with sprite matrix and camera scaling
|
2018-07-10 13:59:49 +01:00 |
|
Richard Davey
|
afec945c94
|
Pass in the UV values
|
2018-07-02 23:52:00 +01:00 |
|
Richard Davey
|
89bf09d19d
|
Swapped to unified batchVertices method
|
2018-07-02 17:06:34 +01:00 |
|