Skip to content

Commit

Permalink
17.4.0 dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
obiot committed Jun 8, 2024
1 parent 4485da1 commit bee4264
Show file tree
Hide file tree
Showing 540 changed files with 3,182 additions and 1,467 deletions.
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/_virtual/_commonjsHelpers.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/_virtual/earcut.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/_virtual/howler.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/_virtual/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/_virtual/re.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
7 changes: 6 additions & 1 deletion dist/melonjs.mjs/application/application.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -18,6 +18,11 @@ import { ApplicationSettings } from './settings.js';
import { consoleHeader } from './header.js';
import { WEBGL, CANVAS, AUTO } from '../const.js';

/**
* @import WebGLRenderer from "./../video/webgl/webgl_renderer.js";
* @import Camera2d from "./../camera/camera2d.js";
*/

/**
* @classdesc
* An Application represents a single melonJS game, and is responsible for updating (each frame) all the related object status and draw them.
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/application/header.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
*/
import { devicePixelRatio, platform, getScreenOrientation, language, hasWebAudio } from '../system/device.js';

/**
* @import Application from "./application.js";
*/

/**
* display information
* @param {Application} app - the game application instance calling this function
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/application/resize.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
*/
import { getElementBounds, getParentBounds, devicePixelRatio } from '../system/device.js';

/**
* @import Application from "./application.js";
*/

/**
* scale the "displayed" canvas by the given scalar.
* this will modify the size of canvas element directly.
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/application/settings.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
*/
/**
* @import Renderer from "./../video/renderer.js";
*/

/**
* Application & Renderer Settings definition.
* @typedef {Object} ApplicationSettings
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/audio/audio.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
10 changes: 9 additions & 1 deletion dist/melonjs.mjs/camera/camera2d.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -19,6 +19,14 @@ import Renderable from '../renderable/renderable.js';
import { clamp, toBeCloseTo } from '../math/math.js';
import { game } from '../index.js';

/**
* @import Bounds from "./../physics/bounds.js";
* @import Color from "./../math/color.js";
* @import Entity from "./../renderable/entity/entity.js";
* @import Sprite from "./../renderable/sprite.js";
* @import NineSliceSprite from "./../renderable/nineslicesprite.js";
*/

// some ref shortcut
const MIN = Math.min, MAX = Math.max;

Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/const.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
11 changes: 9 additions & 2 deletions dist/melonjs.mjs/geometries/ellipse.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
*/
import pool from '../system/pooling.js';

/**
* @import Vector2d from "./../math/vector2.js";
* @import ObservableVector2d from "./../math/observable_vector2.js";
* @import Matrix2d from "./../math/matrix2.js";
* @import Bounds from "./../physics/bounds.js";
*/

/**
* @classdesc
* an ellipse Object
Expand Down Expand Up @@ -145,7 +152,7 @@ class Ellipse {
/**
* apply the given transformation matrix to this ellipse
* @param {Matrix2d} matrix - the transformation matrix
* @returns {Polygon} Reference to this object for method chaining
* @returns {Ellipse} Reference to this object for method chaining
*/
transform(matrix) { // eslint-disable-line no-unused-vars
// TODO
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/geometries/line.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -8,6 +8,10 @@
import pool from '../system/pooling.js';
import Polygon from './poly.js';

/**
* @import Vector2d from "./../math/vector2d.js";
*/

/**
* @classdesc
* a line segment Object
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/geometries/path2d.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -10,6 +10,10 @@ import { TAU } from '../math/math.js';
import earcut from '../node_modules/earcut/src/earcut.js';
import { endpointToCenterParameterization } from './toarccanvas.js';

/**
* @import Point from "./point.js";
*/

/**
* @classdesc
* a simplified path2d implementation, supporting only one path
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/geometries/point.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
*/
/**
* @import Vector2d from "./../math/vector2.js";
**/

/**
* @classdesc
* represents a point in a 2d space
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/geometries/poly.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -8,6 +8,10 @@
import earcut from '../node_modules/earcut/src/earcut.js';
import pool from '../system/pooling.js';

/**
* @import Vector2d from "./../math/vector2.js";
*/

/**
* @classdesc
* a polygon Object.<br>
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/geometries/rectangle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -8,6 +8,10 @@
import pool from '../system/pooling.js';
import Polygon from './poly.js';

/**
* @import Vector2d from "./../math/vector2.js";
**/

/**
* @classdesc
* a rectangle Object
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/geometries/roundrect.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/geometries/toarccanvas.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
4 changes: 2 additions & 2 deletions dist/melonjs.mjs/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down Expand Up @@ -112,7 +112,7 @@ import { initKeyboardEvent } from './input/keyboard.js';
* @name version
* @type {string}
*/
const version = "17.3.0";
const version = "17.4.0";

/**
* a flag indicating that melonJS is fully initialized
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/input/gamepad.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/input/input.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/input/keyboard.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/input/pointer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
6 changes: 5 additions & 1 deletion dist/melonjs.mjs/input/pointerevent.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand All @@ -18,6 +18,10 @@ import Pointer from './pointer.js';
import Rect from '../geometries/rectangle.js';
import { game } from '../index.js';

/**
* @import Vector2d from "./../math/vector2.js";
*/

/**
* A pool of `Pointer` objects to cache pointer/touch event coordinates.
* @type {Array.<Vector2d>}
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/lang/console.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/lang/deprecated.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/level.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/tiled/TMXGroup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/tiled/TMXLayer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/tiled/TMXObject.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/tiled/TMXTile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/tiled/TMXTileMap.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
2 changes: 1 addition & 1 deletion dist/melonjs.mjs/level/tiled/TMXTileset.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v17.3.0
* melonJS Game Engine - v17.4.0
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down
Loading

0 comments on commit bee4264

Please sign in to comment.