88/**
99* The Loader handles loading all external content such as Images, Sounds, Texture Atlases and data files.
1010* It uses a combination of Image() loading and xhr and provides progress and completion callbacks.
11+ * Texture Atlases can be created with tools such as [Texture Packer](https://www.codeandweb.com/texturepacker/phaser) and
12+ * [Shoebox](http://renderhjs.net/shoebox/)
1113*
1214* @class Phaser.Loader
1315* @constructor
@@ -813,6 +815,8 @@ Phaser.Loader.prototype = {
813815
814816 /**
815817 * Add a new texture atlas to the loader. This atlas uses the JSON Array data format.
818+ * Texture Atlases can be created with tools such as [Texture Packer](https://www.codeandweb.com/texturepacker/phaser) and
819+ * [Shoebox](http://renderhjs.net/shoebox/)
816820 *
817821 * @method Phaser.Loader#atlasJSONArray
818822 * @param {string } key - Unique asset key of the texture atlas file.
@@ -829,6 +833,8 @@ Phaser.Loader.prototype = {
829833
830834 /**
831835 * Add a new texture atlas to the loader. This atlas uses the JSON Hash data format.
836+ * Texture Atlases can be created with tools such as [Texture Packer](https://www.codeandweb.com/texturepacker/phaser) and
837+ * [Shoebox](http://renderhjs.net/shoebox/)
832838 *
833839 * @method Phaser.Loader#atlasJSONHash
834840 * @param {string } key - Unique asset key of the texture atlas file.
@@ -861,6 +867,8 @@ Phaser.Loader.prototype = {
861867
862868 /**
863869 * Add a new texture atlas to the loader.
870+ * Texture Atlases can be created with tools such as [Texture Packer](https://www.codeandweb.com/texturepacker/phaser) and
871+ * [Shoebox](http://renderhjs.net/shoebox/)
864872 *
865873 * @method Phaser.Loader#atlas
866874 * @param {string } key - Unique asset key of the texture atlas file.
0 commit comments