Commit graph

5061 commits

Author SHA1 Message Date
Richard Davey
ee42432c74 Texture.get has been optimized to fail first, then error, with a new falsey check. This allows you to skip out specifying animation frames in the animation config without generating a console warning. 2018-03-01 00:36:50 +00:00
Richard Davey
9a561ff385 Added roundPixels support to BitmapText canvas 2018-02-28 23:07:30 +00:00
Richard Davey
fdc1f3cab3 Added canvas roundPixels support for Text, Particles and TileSprites 2018-02-28 22:40:08 +00:00
Richard Davey
2c10ac328c Added roundPixels support for the Canvas renderer 2018-02-28 22:32:59 +00:00
Richard Davey
252a76f416 The Headless render mode has been implemented. You can now set HEADLESS as the renderType in the Game Config and it will run a special game step that skips rendering. It will still create a Canvas element, as lots of internal systems (like input) rely on it, but it will not draw anything to it. Fix #3256 2018-02-28 21:57:32 +00:00
Richard Davey
a223b35ccf Rectangle.top wouldn't reset the y position if the value given never exceed the Rectangles bottom. Fix #3290 (thanks @chancezeus) 2018-02-28 21:25:55 +00:00
Richard Davey
70eca02ce6 Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-28 21:15:22 +00:00
Richard Davey
3a1a9ea700 If you set transparent in the Game Config but didn't provide a backgroundColor then it would render as black. It will now be properly transparent. If you do provide a color value then it must include an alpha component. 2018-02-28 21:15:18 +00:00
Richard Davey
a89be7abc5 Tween.complete will allow you to flag a tween as being complete, no matter what stage it is at. If an onComplete callback has been defined it will be invoked. You can set an optional delay before this happens (thanks @Jerenaux for the idea)
Fix #3280
2018-02-28 21:14:56 +00:00
Richard Davey
1cae348300
Merge pull request #3278 from nkholski/arcadeGroups
Groups arcade collision
2018-02-28 20:56:11 +00:00
Richard Davey
de9cfb6ee2
Merge pull request #3234 from nkholski/master
load.plugin now accepts class as an argument besides an url-string
2018-02-28 20:50:32 +00:00
Richard Davey
218b4e4a52
Merge pull request #3285 from samme/docs/onWorldBounds
Describe Arcade.Body#onWorldBounds
2018-02-28 20:48:31 +00:00
Richard Davey
63e5681073
Merge pull request #3287 from gaudeon/master
BugFix for ScenePlugin.launch, data now passed to queued scenes
2018-02-28 20:47:51 +00:00
srobertson421
66e881c7eb swapped queue loop to use _queue prop rather than queueLength var 2018-02-28 12:25:43 -08:00
Felipe Alfonso
14399d6910 TileSprite can now set frame of the pattern texture 2018-02-28 17:04:57 -03:00
Felipe Alfonso
4a103f91ad Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-28 15:08:35 -03:00
Felipe Alfonso
6a114fc07a Added roundPixels to the texture pipeline 2018-02-28 15:08:08 -03:00
Richard Davey
31f331de98 Added CameraManager.resize method. 2018-02-28 17:19:10 +00:00
Richard Davey
e6059f65cd SceneManager invokes resize method on all Systems. 2018-02-28 17:18:55 +00:00
Richard Davey
e44ce76214 Scene.Systems resize handler added. 2018-02-28 17:18:40 +00:00
Richard Davey
cf01056913 Game.resize now resizes the SceneManager and emits an event. 2018-02-28 17:18:25 +00:00
Richard Davey
c9d3c1a279 Added missing autoResize property to Game.Config 2018-02-28 17:17:37 +00:00
Richard Davey
550e53b81b Fixed InputManager.updateBounds so it factors in the document element position.
Also added `InputManager.resize` method, as the scale wouldn't ever be updated in the update loop if no interactive objects exist.
2018-02-28 14:27:28 +00:00
Richard Davey
d4d2b21d6c Added Game.resize to help with resizing the game config, renderer and input in one 2018-02-28 14:26:24 +00:00
Richard Davey
0144badd94 Added roundPixels boolean to config 2018-02-28 14:26:02 +00:00
Richard Davey
8ae3493296 setText updates
BitmapText.setText will check if the value given is falsey but not a zero and set to an empty string if so.
BitmapText.setText will now cast the given value to a string before setting.
BitmapText.setText will not change the text via `setText` unless the new text is different to the old one.
2018-02-27 15:14:03 +00:00
Richard Davey
b447665533 Text.setText will check if the value given is falsey but not a zero and set to an empty string if so. 2018-02-27 15:13:39 +00:00
Joachim Grill
22ecd23f09 fixed multiatlas loader to support new TexturePacker atlas format introduced for Phaser 3 2018-02-27 14:48:45 +01:00
Travis Chase
ca0366bfc8 launching a scene that is not running will now pass data through when start op is called for this scene in the scene process queue 2018-02-26 22:04:58 -07:00
Richard Davey
34e5a282d2 AnimationComponent.play now calls setSizeToFrame() and updateDisplayOrigin() on the parent Game Object in order to catch situations where you've started playing an animation on a Game Object that uses a different size to the previously set frame. 2018-02-27 01:09:09 +00:00
Richard Davey
921d7e317a Arcade Physics Bodies didn't apply the results of allowRotation to the parent Game Object. 2018-02-27 01:08:55 +00:00
samme
36d91e9955 Describe Arcade.Body#onWorldBounds 2018-02-26 11:27:57 -08:00
dominic
af7d619dc3 Simplify global key down emit check 2018-02-25 21:16:05 +08:00
squaresun
9af8cdcea6 Fix key.repeats not increased when key holding down 2018-02-25 21:03:58 +08:00
squaresun
c5514bcab7 Fix KeyboardManager keydown events keeps firing #3239 2018-02-24 18:20:36 +08:00
Niklas Berg
b87d71ab73 single out groups without physics 2018-02-24 08:44:38 +01:00
Felipe Alfonso
7c96e93c47 Canvas RenderTexture rendering added 2018-02-23 21:05:15 -03:00
Niklas Berg
a50eaae727 Arcade groups collider 2018-02-24 00:04:12 +01:00
Niklas Berg
456faf400c Arcade groups collider 2018-02-24 00:02:19 +01:00
Niklas Berg
b9e4d15efb Groups arcade collisions 2018-02-23 23:49:12 +01:00
Niklas Berg
25aa3263ed Merge remote-tracking branch 'upstream/master' 2018-02-23 23:45:11 +01:00
Richard Davey
f6210905ae Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-23 17:48:05 +00:00
Richard Davey
13863eca30 Preparing for 3.2.0. 2018-02-23 17:48:00 +00:00
Felipe Alfonso
9dbb4db4c6 Added inverted alpha to bitmap mask 2018-02-23 14:09:27 -03:00
Pavle Goloskokovic
e0b85dd3f2 Updated forEachActiveSound method docs to make scope param optional 2018-02-23 15:27:40 +01:00
Felipe Alfonso
ef8e92dc01 RenderTexture base webgl implementation 2018-02-23 00:44:22 -03:00
Richard Davey
4043fa2925
Merge branch 'master' into Phaser#3180 2018-02-22 23:58:38 +00:00
Richard Davey
6581f301c4
Merge pull request #3273 from samme/feature/load-data-uri-warning
Elevate console message for loading data URIs
2018-02-22 23:53:03 +00:00
Felipe Alfonso
57333ea492 Fixed issue with null texture on particle emitter batch generation 2018-02-22 20:36:25 -03:00
samme
2b309c06e5 Elevate console message for loading data URIs 2018-02-22 09:28:02 -08:00
AleBles
697d096221 Added data to ScenePlugin, fixes #3180 2018-02-22 12:34:19 +01:00
Felipe Alfonso
6293233488 Implemented static tilemap layer scale and tilemap alpha 2018-02-22 01:16:10 -03:00
Felipe Alfonso
a218cd5f4a Fixed issue with vertex buffer creation on Static Tilemap Layer 2018-02-22 01:07:43 -03:00
Richard Davey
11d77de4ab Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-22 01:59:41 +00:00
Richard Davey
b57ab091c1 The KeyCode FORWAD_SLASH had a typo and has been changed to FORWAD_SLASH. Fix #3271 (thanks @josedarioxyz) 2018-02-22 01:59:32 +00:00
Richard Davey
0fdeb64ad1
Merge pull request #3269 from samme/docs/load-spritesheet
Correct method name in LoaderPlugin#spritesheet
2018-02-22 01:56:43 +00:00
Richard Davey
997338c35b jsdoc fixes 2018-02-22 01:52:11 +00:00
Richard Davey
9b37a123e2 Updated version number and change log 2018-02-22 01:50:46 +00:00
Richard Davey
147dec11ab Tween.updateTweenData will now check to see if the Tween target still exists before trying to update its properties. 2018-02-22 01:50:36 +00:00
Richard Davey
7126f80615 Fixed jsdocs 2018-02-22 01:38:19 +00:00
Richard Davey
df341be520 Removed local properties that were overwritten by the getters / setters 2018-02-22 01:26:36 +00:00
Richard Davey
4b96ed4d6e jsdoc fixes 2018-02-22 01:17:54 +00:00
Richard Davey
26f0578261 jsdoc fixes 2018-02-22 01:07:30 +00:00
Richard Davey
fe5bd7e6bb Fixed jsdoc errors 2018-02-21 22:51:05 +00:00
samme
bb23b19ef7 Correct method name in LoaderPlugin#spritesheet 2018-02-21 09:43:49 -08:00
Richard Davey
193ac6bfed Updated for 3.1.1 Release. 2018-02-20 14:23:21 +00:00
Richard Davey
73da8608e0 Fixed lint errors 2018-02-19 23:14:57 +00:00
Felipe Alfonso
4b9b4c91a3 Dynamic BitmapText's origin is used on rendering the text 2018-02-19 18:20:30 -03:00
Felipe Alfonso
41bcaba43a Dynamic BitmapText now uses origin component to render the text. 2018-02-19 18:16:57 -03:00
Felipe Alfonso
0c895db8a0 Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-19 17:57:26 -03:00
Felipe Alfonso
abfe7536e9 Removed the read of constant values from the WebGLRenderingContext object. Now they are read from an instance of webgl context. 2018-02-19 17:49:17 -03:00
Richard Davey
337d07a1ab
Merge pull request #3254 from yupaul/master
Bugfixes in Structs.Set
2018-02-19 20:48:31 +00:00
Richard Davey
8bf38d6ac3
Merge pull request #3255 from samme/fix/keyword-static
Fix 'static is a reserved word in strict mode'
2018-02-19 20:41:31 +00:00
Richard Davey
3b70819f4f
Merge pull request #3260 from rblopes/remove-unused-scene-plugin-property
Removed unused queue property in `ScenePlugin`.
2018-02-19 20:39:21 +00:00
Felipe Alfonso
50c79c14af Removed double rounding to pixel on rendering routines.
Fixed rounding pixel issue when camera is shaking
2018-02-19 17:38:40 -03:00
Felipe Alfonso
cdc4359fd7 Fixed issue with tint being set on the incorrect vertex 2018-02-19 17:06:08 -03:00
Pavle Goloskokovic
b39f4fcfa1 Fixes #3238 2018-02-19 16:17:06 +01:00
Rafael Barbosa Lopes
7d64c12e66 Removed unused queue property in ScenePlugin. 2018-02-19 10:00:52 -03:00
Pavle Goloskokovic
fe9951216b Calling base class destroy method only after cleaning up all Web Audio related stuff 2018-02-18 21:52:51 +01:00
Pavle Goloskokovic
ae89750610 Removed redundant docs 2018-02-18 21:38:04 +01:00
Pavle Goloskokovic
812cbbff9f Removed redundant docs 2018-02-18 21:37:23 +01:00
Pavle Goloskokovic
7b9af8691a Fixed add method docs 2018-02-18 21:36:39 +01:00
Pavle Goloskokovic
c3313ef6e5 Fixed class docs 2018-02-18 21:35:39 +01:00
Pavle Goloskokovic
631e6cdf59 Removed redundant docs 2018-02-18 21:24:49 +01:00
Pavle Goloskokovic
1046991e66 Removed redundant docs 2018-02-18 21:24:29 +01:00
Pavle Goloskokovic
81bebfd8c1 Removed redundant docs 2018-02-18 21:24:05 +01:00
Pavle Goloskokovic
ae890eca8a Removed redundant docs 2018-02-18 21:23:30 +01:00
Pavle Goloskokovic
94859c6f99 Removed redundant docs 2018-02-18 21:23:15 +01:00
Pavle Goloskokovic
0b377a34d6 Fixed update method docs, ESLint fix 2018-02-18 21:22:49 +01:00
Pavle Goloskokovic
a08dc5ef64 ESLint fix for playCatchPromise method 2018-02-18 21:21:42 +01:00
Pavle Goloskokovic
1e08945173 Fixed pickAudioTag method docs 2018-02-18 21:20:49 +01:00
Pavle Goloskokovic
c745e096ad Fixed pickAndPlayAudioTag method docs 2018-02-18 21:20:21 +01:00
Pavle Goloskokovic
b607251e77 Fixed stop method docs 2018-02-18 21:20:00 +01:00
Pavle Goloskokovic
5010755aea Fixed resume method docs 2018-02-18 21:19:44 +01:00
Pavle Goloskokovic
7fd6ce95c3 Fixed pause method docs 2018-02-18 21:19:16 +01:00
Pavle Goloskokovic
ebd23f9ae2 Fixed play method docs 2018-02-18 21:18:45 +01:00
Pavle Goloskokovic
0d20a413a7 Fixed class docs 2018-02-18 21:18:09 +01:00
Pavle Goloskokovic
735394bc84 ESLint fix 2018-02-18 21:13:55 +01:00
Pavle Goloskokovic
e6616ec484 Fixed play method docs 2018-02-18 21:13:18 +01:00
Pavle Goloskokovic
1d373cb91e ESLint fix 2018-02-18 21:12:34 +01:00
Pavle Goloskokovic
afbbd7a724 ESLint fix 2018-02-18 21:11:56 +01:00
Pavle Goloskokovic
9af39924ca Updated sounds property docs, ESLint fix 2018-02-18 21:10:37 +01:00
Pavle Goloskokovic
e9ef90da40 ESLint fix 2018-02-18 21:09:14 +01:00
Pavle Goloskokovic
fcad5b12d2 Removed redundant docs 2018-02-18 20:38:57 +01:00
Pavle Goloskokovic
41cf6a2584 Removed redundant docs 2018-02-18 20:38:38 +01:00
Pavle Goloskokovic
ec51794197 Removed redundant docs 2018-02-18 20:38:04 +01:00
Pavle Goloskokovic
4969349f23 Removed redundant docs 2018-02-18 20:37:53 +01:00
Pavle Goloskokovic
ae2120b36a Removed redundant docs, eslint fix 2018-02-18 20:37:37 +01:00
Pavle Goloskokovic
dd9d769061 Removed redundant docs, eslint fix 2018-02-18 20:37:27 +01:00
Pavle Goloskokovic
2ec0f4f5c5 Removed redundant docs 2018-02-18 20:37:12 +01:00
Pavle Goloskokovic
c140e2e40b Removed redundant docs 2018-02-18 20:36:59 +01:00
Pavle Goloskokovic
06d8a21d3a Removed redundant docs 2018-02-18 20:36:16 +01:00
Pavle Goloskokovic
4dbb8a1dee Removed redundant docs 2018-02-18 20:36:04 +01:00
Pavle Goloskokovic
c5981812e2 Removed redundant docs 2018-02-18 20:35:53 +01:00
Pavle Goloskokovic
19bec4d832 Removed redundant docs 2018-02-18 20:35:35 +01:00
Pavle Goloskokovic
8850435ed3 Removed redundant docs 2018-02-18 20:35:14 +01:00
Pavle Goloskokovic
03a659a9e2 Removed redundant docs 2018-02-18 20:35:02 +01:00
Pavle Goloskokovic
e676d264fa Removed redundant docs 2018-02-18 20:34:49 +01:00
Pavle Goloskokovic
0f6aa55859 Removed redundant docs 2018-02-18 20:34:37 +01:00
Pavle Goloskokovic
67fd912c1f Fixed class docs 2018-02-18 20:34:16 +01:00
Pavle Goloskokovic
d7f25fb363 Removed redundant docs 2018-02-18 20:25:22 +01:00
Pavle Goloskokovic
b92f958a4f Removed redundant docs 2018-02-18 20:25:00 +01:00
Pavle Goloskokovic
4efd588123 Removed redundant docs 2018-02-18 20:24:44 +01:00
Pavle Goloskokovic
5c631d8b8e Removed redundant docs 2018-02-18 20:24:31 +01:00
Pavle Goloskokovic
a733ce8054 Removed redundant docs, eslint fix 2018-02-18 20:24:18 +01:00
Pavle Goloskokovic
8cf45cdc7e Removed redundant docs, eslint fix 2018-02-18 20:24:05 +01:00
Pavle Goloskokovic
06fba3b6c7 Removed redundant docs, eslint fix 2018-02-18 20:23:55 +01:00
Pavle Goloskokovic
3bcf936347 Fixed play method docs, eslint fix 2018-02-18 20:23:31 +01:00
Pavle Goloskokovic
7522e8613f Removed redundant docs 2018-02-18 20:23:15 +01:00
Pavle Goloskokovic
8945fa798e Fixed play method docs 2018-02-18 20:23:02 +01:00
Pavle Goloskokovic
43eec1c43c Removed redundant docs 2018-02-18 20:22:52 +01:00
Pavle Goloskokovic
98fdfde972 Removed redundant docs 2018-02-18 20:22:39 +01:00
Pavle Goloskokovic
bb7909b7f0 Removed redundant docs 2018-02-18 20:22:27 +01:00
Pavle Goloskokovic
5a34d1ae2c Removed redundant docs 2018-02-18 20:22:17 +01:00
Pavle Goloskokovic
870f1d95a5 Removed redundant docs 2018-02-18 20:22:07 +01:00
Pavle Goloskokovic
d9af59c72e Removed redundant docs 2018-02-18 20:21:57 +01:00
Pavle Goloskokovic
daeba568b9 Fixed play method docs 2018-02-18 20:21:42 +01:00
Pavle Goloskokovic
05581a4c49 Removed redundant docs 2018-02-18 20:21:29 +01:00
Pavle Goloskokovic
56641fa7ee Removed redundant docs 2018-02-18 20:21:14 +01:00
Pavle Goloskokovic
fe782073cd Removed redundant docs 2018-02-18 20:20:58 +01:00
Pavle Goloskokovic
bb4c8404d2 Removed redundant docs 2018-02-18 20:20:45 +01:00
Pavle Goloskokovic
cf0732a599 Removed redundant docs 2018-02-18 20:20:29 +01:00
Pavle Goloskokovic
455579a427 Removed redundant docs 2018-02-18 20:20:11 +01:00
Pavle Goloskokovic
146c998ff7 Removed redundant docs 2018-02-18 20:19:46 +01:00
Pavle Goloskokovic
7e5b680e3c Removed redundant docs 2018-02-18 20:19:31 +01:00
Pavle Goloskokovic
6d0ec24aa6 Removed redundant docs 2018-02-18 20:18:57 +01:00
Pavle Goloskokovic
19384cb914 Fixed class docs 2018-02-18 20:18:41 +01:00
Pavle Goloskokovic
87f2d4bf0d Removed redundant docs 2018-02-18 20:03:37 +01:00
Pavle Goloskokovic
5131bd6571 Removed redundant docs 2018-02-18 20:03:21 +01:00
Pavle Goloskokovic
3b6a406e6d Fixed add method docs 2018-02-18 20:02:57 +01:00
Pavle Goloskokovic
e018be1d65 Removed redundant docs 2018-02-18 20:02:22 +01:00
Pavle Goloskokovic
9ce14d62be Fixed destination property docs 2018-02-18 20:02:06 +01:00
Pavle Goloskokovic
9550d6f9fe Fixed masterVolumeNode property docs 2018-02-18 20:01:45 +01:00
Pavle Goloskokovic
12efd5da3e Fixed masterMuteNode property docs 2018-02-18 20:01:29 +01:00
Pavle Goloskokovic
89eaea2e8e Fixed context property docs 2018-02-18 20:01:01 +01:00
samme
64e5b4394a Fix 'static is a reserved word in strict mode' 2018-02-18 10:38:08 -08:00
Pavle Goloskokovic
18588efcc7 Removed redundant docs 2018-02-18 19:35:53 +01:00
Pavle Goloskokovic
8760c39beb Removed redundant docs 2018-02-18 19:35:36 +01:00
Pavle Goloskokovic
75fb69ff32 Removed redundant docs 2018-02-18 19:34:57 +01:00
Pavle Goloskokovic
2fb6590da3 Removed redundant docs 2018-02-18 19:34:39 +01:00
Pavle Goloskokovic
124722e27a ESLint fix 2018-02-18 19:34:13 +01:00
Pavle Goloskokovic
a0098a2994 Fixed play method docs 2018-02-18 19:33:30 +01:00
Pavle Goloskokovic
0ecda6b08d Removed redundant docs 2018-02-18 19:32:57 +01:00
Pavle Goloskokovic
c25345c2d5 Removed redundant docs 2018-02-18 19:32:41 +01:00
Pavle Goloskokovic
97b3724762 Fixed hasLooped property docs 2018-02-18 19:31:57 +01:00
Pavle Goloskokovic
650cc1c395 Fixed hasEnded property docs 2018-02-18 19:31:41 +01:00
Pavle Goloskokovic
baaa92c62d Fixed rateUpdates property docs 2018-02-18 19:31:25 +01:00
Pavle Goloskokovic
a20095389d Fixed loopTime property docs 2018-02-18 19:31:02 +01:00
Pavle Goloskokovic
7b3f457378 Fixed startTime property docs 2018-02-18 19:30:44 +01:00
Pavle Goloskokovic
919ed923ee Fixed playTime property docs 2018-02-18 19:30:24 +01:00
Pavle Goloskokovic
eeeeea71ac Fixed volumeNode property docs 2018-02-18 19:30:10 +01:00
Pavle Goloskokovic
a13c6b778e Fixed muteNode property docs 2018-02-18 19:29:52 +01:00
Pavle Goloskokovic
7db6ac48b3 Fixed loopSource property docs 2018-02-18 19:29:36 +01:00
Pavle Goloskokovic
0137e18d7b Fixed source property docs 2018-02-18 19:29:18 +01:00
Pavle Goloskokovic
5f18bb263b Fixed constructor docs 2018-02-18 19:28:55 +01:00
Pavle Goloskokovic
a50f7adb1c Reverted type changes 2018-02-18 19:12:16 +01:00
Pavle Goloskokovic
6a241358c4 Reverted type changes 2018-02-18 19:12:04 +01:00
Pavle Goloskokovic
07263863a7 Removed duplicate docs 2018-02-18 17:22:07 +01:00
Pavle Goloskokovic
7939edb8b4 Removed duplicate docs 2018-02-18 17:21:54 +01:00
Pavle Goloskokovic
3c9542f565 Fixed remove method docs 2018-02-18 17:21:11 +01:00
Pavle Goloskokovic
91d40a9531 Fixed playAudioSprite method docs 2018-02-18 17:20:42 +01:00
Pavle Goloskokovic
b03bc3e3af Fixed play method docs 2018-02-18 17:20:09 +01:00
Pavle Goloskokovic
3f201121f8 Removed unnecessary docs 2018-02-18 17:19:43 +01:00
Pavle Goloskokovic
24f5de4c5c Fixed addAudioSprite method docs 2018-02-18 17:19:24 +01:00
Pavle Goloskokovic
af76f7f9f1 Added docs type definition for audiosprite sound object 2018-02-18 17:18:55 +01:00
Pavle Goloskokovic
5e41c48b3d Fixed add method docs 2018-02-18 17:18:13 +01:00
Pavle Goloskokovic
cb939cc7d8 Fixed unlocked property docs 2018-02-18 17:17:04 +01:00
Pavle Goloskokovic
8d55a4aeb4 Fixed locked property docs 2018-02-18 17:16:46 +01:00
Pavle Goloskokovic
3faaf28596 Fixed sounds property docs 2018-02-18 17:16:19 +01:00
Pavle Goloskokovic
472da3dc22 Updated docs 2018-02-18 16:07:06 +01:00
Pavle Goloskokovic
f8ac9dcabb Updated docs 2018-02-18 16:06:40 +01:00
Pavle Goloskokovic
d637f04caf Removed duplicate docs 2018-02-18 15:59:43 +01:00
Pavle Goloskokovic
d352363424 Removed duplicate docs 2018-02-18 15:58:56 +01:00
Pavle Goloskokovic
ac95880995 Fixed play method docs 2018-02-18 15:57:48 +01:00
Pavle Goloskokovic
36475d5381 Fixed removeMarker method docs 2018-02-18 15:57:11 +01:00
Pavle Goloskokovic
9959d42fbc Fixed updateMarker method docs 2018-02-18 15:56:25 +01:00
Pavle Goloskokovic
af89faa83e Adjusted default marker duration value calculation 2018-02-18 15:55:56 +01:00
Pavle Goloskokovic
942fd09397 Fixed addMarker method docs 2018-02-18 15:55:08 +01:00
Pavle Goloskokovic
6a828b3943 Fixed currentMarker property docs 2018-02-18 15:54:36 +01:00
Pavle Goloskokovic
9adce2b40e Fixed markers property docs 2018-02-18 15:54:16 +01:00
Pavle Goloskokovic
05a20d6435 Removed duplicate docs 2018-02-18 15:53:47 +01:00
Pavle Goloskokovic
42fc672174 Fixed currentConfig property docs 2018-02-18 15:52:57 +01:00
Pavle Goloskokovic
1c66d38834 Fixed config property docs 2018-02-18 15:52:39 +01:00
Pavle Goloskokovic
82119c1601 Fixed constructor config param docs 2018-02-18 15:51:50 +01:00
Pavle Goloskokovic
99c5053acb Added BaseSound class description 2018-02-18 15:50:32 +01:00
Pavle Goloskokovic
28bf61f846 Added docs for defining SoundMarker custom type 2018-02-18 15:29:49 +01:00
Pavle Goloskokovic
8e2cb94c63 Added docs for defining SoundConfig custom type 2018-02-18 15:29:33 +01:00
yp
9f07ee0af4 Bugfixes in Structs.Set 2018-02-18 12:59:32 +02:00
Richard Davey
33873fe23d eslint fixes and removing type related console errors 2018-02-16 19:32:43 +00:00
Richard Davey
3c65121cb3 eslint fixes 2018-02-16 19:17:49 +00:00
Richard Davey
50dac412be eslint fixes and console removal 2018-02-16 19:08:50 +00:00
Richard Davey
d745b70330 The Mesh Game Object Factory entry had incorrect arguments passed to Mesh constructor. 2018-02-16 19:07:58 +00:00
Richard Davey
5b4b5de075 TileSprite was missing a gl reference, causing it to fail during a context loss and restore. 2018-02-16 18:54:33 +00:00
Richard Davey
d23688c3e4 Added eslint fixes and overrides 2018-02-16 18:44:07 +00:00
Richard Davey
4a3f4293d4 Fuzzy.Floor had an incorrect method signature. 2018-02-16 18:43:52 +00:00
Richard Davey
3f155bf8f3 World didn't import GetOverlapX or GetOverlapY, causing separateCircle to break. 2018-02-16 18:43:06 +00:00
Richard Davey
86f00eeb52 eslint fixes 2018-02-16 18:17:51 +00:00
Richard Davey
e1554c34d6 eslint fixes 2018-02-16 18:07:49 +00:00
Twilrom
d443ff380e Make WebGL Graphics closePath work the same as in Canvas. 2018-02-16 16:28:35 +01:00
Twilrom
d45784f3c9 Remove some unnecessary calls to closePath. 2018-02-16 16:13:48 +01:00
Twilrom
859cc27e2e Fix beginPath in WebGL Graphics 2018-02-16 15:38:21 +01:00
Twilrom
0c0b272ccc Update WebGL Graphics.arc to work more like on Canvas 2018-02-16 15:38:21 +01:00
Niklas Berg
6dde7002dc fixed formatting 2018-02-15 18:11:55 +01:00
Richard Davey
79520bfdc4 Added jsdoc 2018-02-15 14:33:36 +00:00
Richard Davey
1399355d3f Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-15 14:31:19 +00:00
Richard Davey
4e6df03512 Updated semver 2018-02-15 14:31:15 +00:00
Richard Davey
39c415424d
Merge pull request #3233 from samme/samme-patch-1
Fix wrong Extend target in MergeXHRSettings
2018-02-15 13:59:21 +00:00
Richard Davey
130f9943d0 Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-15 01:52:06 +00:00
Richard Davey
aa9cac4ba8 Added refreshBody method and jsdocs 2018-02-15 01:52:01 +00:00
Richard Davey
7df00ccb6f Removed un-used properties from the Static Body
Set un-used Vectors to use the Vec2 ZERO constant to save object creation.
Added setGameObject and updateFromGameObject methods.
2018-02-15 01:51:36 +00:00
Richard Davey
4cc7fed1dd Added World.pendingDestroy Set and process it during postUpdate. 2018-02-15 01:50:22 +00:00
Richard Davey
b36dd17430 Removed pendingDestroy and opted for easier Set iteration.
Updated Body.reset so it resets the Sprite as well, otherwise the Body remains stuck on the next update loop.
2018-02-15 01:49:55 +00:00
Richard Davey
11aff17e0d Added Vector2.ZERO const for a handy zero vec2 reference. 2018-02-15 01:49:11 +00:00
Felipe Alfonso
8083cd9d64 Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-14 20:04:46 -03:00
Niklas Berg
6a77790aef load.plugin now accepts class as an argument besides an url-string 2018-02-14 23:35:05 +01:00
Richard Davey
e68329f763 Fixed version numbers 2018-02-14 19:55:00 +00:00
Felipe Alfonso
e2bebd3ddd jsdoc property and method updates 2018-02-14 16:52:37 -03:00
Felipe Alfonso
1737399f69 Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-14 16:45:30 -03:00
Felipe Alfonso
74abb96211 Added alpha and tint to static tilemap layer. Fixed BitmapMask binding resources issue. 2018-02-14 16:45:22 -03:00
Richard Davey
24e8f7a119 Body.destroy is now flag based, cleared by the World.
Added pendingDestroy flag to handle body destruction within events or collider iterations.
2018-02-14 19:36:34 +00:00
Richard Davey
81d0a48c58 disableBody renamed disableGameObjectBody
disableBody now disables just a body object.
destroying a body sets its `pendingDestroy` flag, which is now cleared in the postUpdate method.
Group vs. Group collision has been implemented.
World.destroy properly clears down its Sets and RTrees.
2018-02-14 19:35:57 +00:00
Richard Davey
b7beea1d37 Impact bodies now remove themselves from the world when destroyed. 2018-02-14 19:34:21 +00:00
Richard Davey
b81b268b29 Matter JS bodies now have a destroy method that removes them from the world. 2018-02-14 19:33:56 +00:00
Richard Davey
c6f4a6ed43 Arcade Physics Colliders have a name property and setName method. 2018-02-14 19:33:33 +00:00
Richard Davey
d72c7d501a Destroying a Game Object will now call destroy on its physics body. 2018-02-14 19:33:13 +00:00
samme
633acec058
Fix wrong Extend target in MergeXHRSettings 2018-02-14 09:52:52 -08:00
Felipe Alfonso
92182bed90 Fixed issue with Blitter renderer where it overwrote previous vertex data 2018-02-14 13:43:35 -03:00
Felipe Alfonso
edf15986ff BitmapMask si working properly with the vertex update batching. 2018-02-14 13:20:56 -03:00
Felipe Alfonso
b700ac158c Merge branch 'master' of https://github.com/photonstorm/phaser 2018-02-14 10:32:17 -03:00
Richard Davey
c80e2fde2c Fixed use of List structure for the Blitter game object. 2018-02-14 12:25:17 +00:00