Exemplo n.º 1
0
	/**
	 * Received progress from Thread
	 *
	 * @param {number} percent (progress)
	 */
	function onProgressUpdate( percent )
	{
		Background.setPercent( percent );
	}
Exemplo n.º 2
0
			DB.onProgress = function(i, count) {
				Background.setPercent( Math.floor(i/count * 100) );
			};
Exemplo n.º 3
0
	MapRenderer.onProgressUpdate = function OnProgressUpdate( percent )
	{
		Background.setPercent( percent );
	};