Shorter warning

This commit is contained in:
Richard Davey 2018-04-12 23:12:23 +01:00
parent 703f04025b
commit a6ef9e09dd

View file

@ -20,7 +20,7 @@ var hasWarned = false;
* *
* @param {number} x - The horizontal position of this Game Object in the world. * @param {number} x - The horizontal position of this Game Object in the world.
* @param {number} y - The vertical position of this Game Object in the world. * @param {number} y - The vertical position of this Game Object in the world.
* @param {Phaser.GameObjects.GameObject[]} [children] - An optional array of Game Objects to add to this Container. * @param {Phaser.GameObjects.GameObject|Phaser.GameObjects.GameObject[]} [children] - An optional array of Game Objects to add to this Container.
* *
* @return {Phaser.GameObjects.Container} The Game Object that was created. * @return {Phaser.GameObjects.Container} The Game Object that was created.
*/ */
@ -28,7 +28,7 @@ GameObjectFactory.register('container', function (x, y, children)
{ {
if (!hasWarned) if (!hasWarned)
{ {
console.warn('Containers are experimental and should not be used in production'); console.warn('Use of a beta feature: Containers');
hasWarned = true; hasWarned = true;
} }