Skip to content

Commit e7d4798

Browse files
committed
v3.88.1 release
1 parent ec9f5bb commit e7d4798

9 files changed

+152
-100
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ npm install phaser
5757
[Phaser is on jsDelivr](https://www.jsdelivr.com/package/npm/phaser) which is a "super-fast CDN for developers". Include _either_ of the following in your html:
5858

5959
```html
60-
<script src="//cdn.jsdelivr.net/npm/[email protected].0/dist/phaser.js"></script>
61-
<script src="//cdn.jsdelivr.net/npm/[email protected].0/dist/phaser.min.js"></script>
60+
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/phaser.js"></script>
61+
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/phaser.min.js"></script>
6262
```
6363

6464
It is also available from Cloudflare's [cdnjs](https://cdnjs.com/libraries/phaser):
6565

6666
```html
67-
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.0/phaser.js"></script>
68-
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.0/phaser.min.js"></script>
67+
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.1/phaser.js"></script>
68+
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.1/phaser.min.js"></script>
6969
```
7070

7171
## Phaser TypeScript Definitions

dist/phaser-arcade-physics.js

+36-23
Original file line numberDiff line numberDiff line change
@@ -15663,7 +15663,7 @@ var CONST = {
1566315663
* @type {string}
1566415664
* @since 3.0.0
1566515665
*/
15666-
VERSION: '3.88',
15666+
VERSION: '3.88.1',
1566715667

1566815668
/**
1566915669
* Phaser Release Version as displayed in the console.log header URL.
@@ -219649,7 +219649,7 @@ var NumberTweenBuilder = function (parent, config, defaults)
219649219649
var easeParams = GetFastValue(config, 'easeParams', defaults.easeParams);
219650219650
var ease = GetFastValue(config, 'ease', defaults.ease);
219651219651

219652-
var ops = GetFastValueOp('value', to);
219652+
var ops = GetValueOp('value', to);
219653219653

219654219654
var tween = new Tween(parent, targets);
219655219655

@@ -225883,6 +225883,7 @@ var SafeRange = __webpack_require__(82011);
225883225883
*
225884225884
* Optionally you can specify a start and end index. For example if the array had 100 elements,
225885225885
* and you set `startIndex` to 0 and `endIndex` to 50, it would search only the first 50 elements.
225886+
*
225886225887
* You can also specify a negative `startIndex`, such as `-1`, which would start the search at the end of the array
225887225888
*
225888225889
* @function Phaser.Utils.Array.GetFirst
@@ -225891,39 +225892,51 @@ var SafeRange = __webpack_require__(82011);
225891225892
* @param {array} array - The array to search.
225892225893
* @param {string} [property] - The property to test on each array element.
225893225894
* @param {*} [value] - The value to test the property against. Must pass a strict (`===`) comparison check.
225894-
* @param {number} [startIndex=0] - An optional start index to search from. You cn also set `startIndex` to -1 to start the search from the end of the array.
225895+
* @param {number} [startIndex=0] - An optional start index to search from. You can also set `startIndex` to -1 to start the search from the end of the array.
225895225896
* @param {number} [endIndex=array.length] - An optional end index to search up to (but not included)
225896225897
*
225897225898
* @return {?object} The first matching element from the array, or `null` if no element could be found in the range given.
225898225899
*/
225899225900
var GetFirst = function (array, property, value, startIndex, endIndex)
225900225901
{
225901225902
if (startIndex === undefined) { startIndex = 0; }
225902-
if (endIndex === undefined) { endIndex = startIndex >= 0 ? array.length - 1 : 0; }
225903-
if (startIndex === -1) { startIndex = array.length - 1; }
225904-
225905-
var i, child;
225903+
if (endIndex === undefined) { endIndex = array.length; }
225906225904

225907-
if (SafeRange(array, Math.min(startIndex, endIndex), Math.max(startIndex, endIndex)))
225905+
if (startIndex !== -1)
225908225906
{
225909-
var step = startIndex < endIndex ? 1 : -1;
225910-
var count = Math.abs(endIndex - startIndex);
225911-
var index = startIndex;
225912-
225913-
for (i = 0; i < count; i += step)
225907+
if (SafeRange(array, startIndex, endIndex))
225914225908
{
225915-
child = array[index];
225916-
225917-
if (!property ||
225918-
(property && value === undefined && child.hasOwnProperty(property)) ||
225919-
(property && value !== undefined && child[property] === value))
225909+
for (var i = startIndex; i < endIndex; i++)
225920225910
{
225921-
return child;
225911+
var child = array[i];
225912+
225913+
if (!property ||
225914+
(property && value === undefined && child.hasOwnProperty(property)) ||
225915+
(property && value !== undefined && child[property] === value))
225916+
{
225917+
return child;
225918+
}
225922225919
}
225923-
225924-
index += step;
225925225920
}
225926225921
}
225922+
else
225923+
{
225924+
if (SafeRange(array, 0, endIndex))
225925+
{
225926+
for (var i = endIndex; i >= 0; i--)
225927+
{
225928+
var child = array[i];
225929+
225930+
if (!property ||
225931+
(property && value === undefined && child.hasOwnProperty(property)) ||
225932+
(property && value !== undefined && child[property] === value))
225933+
{
225934+
return child;
225935+
}
225936+
}
225937+
}
225938+
}
225939+
225927225940
return null;
225928225941
};
225929225942

@@ -227060,7 +227073,7 @@ module.exports = RotateRight;
227060227073
* @param {array} array - The array to check.
227061227074
* @param {number} startIndex - The start index.
227062227075
* @param {number} endIndex - The end index.
227063-
* @param {boolean} [throwError=true] - Throw an error if the range is out of bounds.
227076+
* @param {boolean} [throwError=false] - Throw an error if the range is out of bounds.
227064227077
*
227065227078
* @return {boolean} True if the range is safe, otherwise false.
227066227079
*/
@@ -227071,7 +227084,7 @@ var SafeRange = function (array, startIndex, endIndex, throwError)
227071227084
if (startIndex < 0 ||
227072227085
startIndex >= len ||
227073227086
startIndex >= endIndex ||
227074-
endIndex >= len)
227087+
endIndex > len)
227075227088
{
227076227089
if (throwError)
227077227090
{

dist/phaser-arcade-physics.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/phaser-ie9.js

+36-23
Original file line numberDiff line numberDiff line change
@@ -15663,7 +15663,7 @@ var CONST = {
1566315663
* @type {string}
1566415664
* @since 3.0.0
1566515665
*/
15666-
VERSION: '3.88',
15666+
VERSION: '3.88.1',
1566715667

1566815668
/**
1566915669
* Phaser Release Version as displayed in the console.log header URL.
@@ -238189,7 +238189,7 @@ var NumberTweenBuilder = function (parent, config, defaults)
238189238189
var easeParams = GetFastValue(config, 'easeParams', defaults.easeParams);
238190238190
var ease = GetFastValue(config, 'ease', defaults.ease);
238191238191

238192-
var ops = GetFastValueOp('value', to);
238192+
var ops = GetValueOp('value', to);
238193238193

238194238194
var tween = new Tween(parent, targets);
238195238195

@@ -244423,6 +244423,7 @@ var SafeRange = __webpack_require__(82011);
244423244423
*
244424244424
* Optionally you can specify a start and end index. For example if the array had 100 elements,
244425244425
* and you set `startIndex` to 0 and `endIndex` to 50, it would search only the first 50 elements.
244426+
*
244426244427
* You can also specify a negative `startIndex`, such as `-1`, which would start the search at the end of the array
244427244428
*
244428244429
* @function Phaser.Utils.Array.GetFirst
@@ -244431,39 +244432,51 @@ var SafeRange = __webpack_require__(82011);
244431244432
* @param {array} array - The array to search.
244432244433
* @param {string} [property] - The property to test on each array element.
244433244434
* @param {*} [value] - The value to test the property against. Must pass a strict (`===`) comparison check.
244434-
* @param {number} [startIndex=0] - An optional start index to search from. You cn also set `startIndex` to -1 to start the search from the end of the array.
244435+
* @param {number} [startIndex=0] - An optional start index to search from. You can also set `startIndex` to -1 to start the search from the end of the array.
244435244436
* @param {number} [endIndex=array.length] - An optional end index to search up to (but not included)
244436244437
*
244437244438
* @return {?object} The first matching element from the array, or `null` if no element could be found in the range given.
244438244439
*/
244439244440
var GetFirst = function (array, property, value, startIndex, endIndex)
244440244441
{
244441244442
if (startIndex === undefined) { startIndex = 0; }
244442-
if (endIndex === undefined) { endIndex = startIndex >= 0 ? array.length - 1 : 0; }
244443-
if (startIndex === -1) { startIndex = array.length - 1; }
244444-
244445-
var i, child;
244443+
if (endIndex === undefined) { endIndex = array.length; }
244446244444

244447-
if (SafeRange(array, Math.min(startIndex, endIndex), Math.max(startIndex, endIndex)))
244445+
if (startIndex !== -1)
244448244446
{
244449-
var step = startIndex < endIndex ? 1 : -1;
244450-
var count = Math.abs(endIndex - startIndex);
244451-
var index = startIndex;
244452-
244453-
for (i = 0; i < count; i += step)
244447+
if (SafeRange(array, startIndex, endIndex))
244454244448
{
244455-
child = array[index];
244456-
244457-
if (!property ||
244458-
(property && value === undefined && child.hasOwnProperty(property)) ||
244459-
(property && value !== undefined && child[property] === value))
244449+
for (var i = startIndex; i < endIndex; i++)
244460244450
{
244461-
return child;
244451+
var child = array[i];
244452+
244453+
if (!property ||
244454+
(property && value === undefined && child.hasOwnProperty(property)) ||
244455+
(property && value !== undefined && child[property] === value))
244456+
{
244457+
return child;
244458+
}
244462244459
}
244463-
244464-
index += step;
244465244460
}
244466244461
}
244462+
else
244463+
{
244464+
if (SafeRange(array, 0, endIndex))
244465+
{
244466+
for (var i = endIndex; i >= 0; i--)
244467+
{
244468+
var child = array[i];
244469+
244470+
if (!property ||
244471+
(property && value === undefined && child.hasOwnProperty(property)) ||
244472+
(property && value !== undefined && child[property] === value))
244473+
{
244474+
return child;
244475+
}
244476+
}
244477+
}
244478+
}
244479+
244467244480
return null;
244468244481
};
244469244482

@@ -245600,7 +245613,7 @@ module.exports = RotateRight;
245600245613
* @param {array} array - The array to check.
245601245614
* @param {number} startIndex - The start index.
245602245615
* @param {number} endIndex - The end index.
245603-
* @param {boolean} [throwError=true] - Throw an error if the range is out of bounds.
245616+
* @param {boolean} [throwError=false] - Throw an error if the range is out of bounds.
245604245617
*
245605245618
* @return {boolean} True if the range is safe, otherwise false.
245606245619
*/
@@ -245611,7 +245624,7 @@ var SafeRange = function (array, startIndex, endIndex, throwError)
245611245624
if (startIndex < 0 ||
245612245625
startIndex >= len ||
245613245626
startIndex >= endIndex ||
245614-
endIndex >= len)
245627+
endIndex > len)
245615245628
{
245616245629
if (throwError)
245617245630
{

dist/phaser-ie9.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/phaser.esm.js

+36-23
Original file line numberDiff line numberDiff line change
@@ -15651,7 +15651,7 @@ var CONST = {
1565115651
* @type {string}
1565215652
* @since 3.0.0
1565315653
*/
15654-
VERSION: '3.88',
15654+
VERSION: '3.88.1',
1565515655

1565615656
/**
1565715657
* Phaser Release Version as displayed in the console.log header URL.
@@ -237639,7 +237639,7 @@ var NumberTweenBuilder = function (parent, config, defaults)
237639237639
var easeParams = GetFastValue(config, 'easeParams', defaults.easeParams);
237640237640
var ease = GetFastValue(config, 'ease', defaults.ease);
237641237641

237642-
var ops = GetFastValueOp('value', to);
237642+
var ops = GetValueOp('value', to);
237643237643

237644237644
var tween = new Tween(parent, targets);
237645237645

@@ -243873,6 +243873,7 @@ var SafeRange = __webpack_require__(82011);
243873243873
*
243874243874
* Optionally you can specify a start and end index. For example if the array had 100 elements,
243875243875
* and you set `startIndex` to 0 and `endIndex` to 50, it would search only the first 50 elements.
243876+
*
243876243877
* You can also specify a negative `startIndex`, such as `-1`, which would start the search at the end of the array
243877243878
*
243878243879
* @function Phaser.Utils.Array.GetFirst
@@ -243881,39 +243882,51 @@ var SafeRange = __webpack_require__(82011);
243881243882
* @param {array} array - The array to search.
243882243883
* @param {string} [property] - The property to test on each array element.
243883243884
* @param {*} [value] - The value to test the property against. Must pass a strict (`===`) comparison check.
243884-
* @param {number} [startIndex=0] - An optional start index to search from. You cn also set `startIndex` to -1 to start the search from the end of the array.
243885+
* @param {number} [startIndex=0] - An optional start index to search from. You can also set `startIndex` to -1 to start the search from the end of the array.
243885243886
* @param {number} [endIndex=array.length] - An optional end index to search up to (but not included)
243886243887
*
243887243888
* @return {?object} The first matching element from the array, or `null` if no element could be found in the range given.
243888243889
*/
243889243890
var GetFirst = function (array, property, value, startIndex, endIndex)
243890243891
{
243891243892
if (startIndex === undefined) { startIndex = 0; }
243892-
if (endIndex === undefined) { endIndex = startIndex >= 0 ? array.length - 1 : 0; }
243893-
if (startIndex === -1) { startIndex = array.length - 1; }
243894-
243895-
var i, child;
243893+
if (endIndex === undefined) { endIndex = array.length; }
243896243894

243897-
if (SafeRange(array, Math.min(startIndex, endIndex), Math.max(startIndex, endIndex)))
243895+
if (startIndex !== -1)
243898243896
{
243899-
var step = startIndex < endIndex ? 1 : -1;
243900-
var count = Math.abs(endIndex - startIndex);
243901-
var index = startIndex;
243902-
243903-
for (i = 0; i < count; i += step)
243897+
if (SafeRange(array, startIndex, endIndex))
243904243898
{
243905-
child = array[index];
243906-
243907-
if (!property ||
243908-
(property && value === undefined && child.hasOwnProperty(property)) ||
243909-
(property && value !== undefined && child[property] === value))
243899+
for (var i = startIndex; i < endIndex; i++)
243910243900
{
243911-
return child;
243901+
var child = array[i];
243902+
243903+
if (!property ||
243904+
(property && value === undefined && child.hasOwnProperty(property)) ||
243905+
(property && value !== undefined && child[property] === value))
243906+
{
243907+
return child;
243908+
}
243912243909
}
243913-
243914-
index += step;
243915243910
}
243916243911
}
243912+
else
243913+
{
243914+
if (SafeRange(array, 0, endIndex))
243915+
{
243916+
for (var i = endIndex; i >= 0; i--)
243917+
{
243918+
var child = array[i];
243919+
243920+
if (!property ||
243921+
(property && value === undefined && child.hasOwnProperty(property)) ||
243922+
(property && value !== undefined && child[property] === value))
243923+
{
243924+
return child;
243925+
}
243926+
}
243927+
}
243928+
}
243929+
243917243930
return null;
243918243931
};
243919243932

@@ -245050,7 +245063,7 @@ module.exports = RotateRight;
245050245063
* @param {array} array - The array to check.
245051245064
* @param {number} startIndex - The start index.
245052245065
* @param {number} endIndex - The end index.
245053-
* @param {boolean} [throwError=true] - Throw an error if the range is out of bounds.
245066+
* @param {boolean} [throwError=false] - Throw an error if the range is out of bounds.
245054245067
*
245055245068
* @return {boolean} True if the range is safe, otherwise false.
245056245069
*/
@@ -245061,7 +245074,7 @@ var SafeRange = function (array, startIndex, endIndex, throwError)
245061245074
if (startIndex < 0 ||
245062245075
startIndex >= len ||
245063245076
startIndex >= endIndex ||
245064-
endIndex >= len)
245077+
endIndex > len)
245065245078
{
245066245079
if (throwError)
245067245080
{

dist/phaser.esm.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)