Modern Warfare had the most successful launch of any Call of Duty of this generation

// initialize jwplayer var playerInstance = jwplayer('player');// player dom elements var playerContainerEl = document.querySelector('.player-container');// returns video player position from top of document function getElementOffsetTop(el) { var boundingClientRect = el.getBoundingClientRect(); var bodyEl = document.body; var docEl = document.documentElement; var scrollTop = window.pageYOffset || docEl.scrollTop || bodyEl.scrollTop; var clientTop = docEl.clientTop || bodyEl.clientTop || 0; return Math.round(boundingClientRect.top + scrollTop - clientTop); }// returns the current y scroll position function getScrollTop() { var docEl = document.documentElement; return (window.pageYOffset || docEl.scrollTop) - (docEl.clientTop || 0); }// configure jwplayer instance playerInstance.setup({ autostart: true, playlist: 'https://cdn.jwplayer.com/v2/playlists/mYdavspX', primary: 'html5', setFullscreen: true, width: '100%' });// when jwplayer instance is ready playerInstance.on('ready', function() { var config = playerInstance.getConfig(); var utils = playerInstance.utils; // get height of player element var playerHeight = config.containerHeight; // flag determining whether close has been clicked var closed = true; // CHANGED // flag determing whether player is playing var playing = false; // ADDED // eventhandler for when close button is being pressed document.getElementsByClassName('icon-close')[0].addEventListener('click', () => { closed = true; onScrollViewHandler(); }); playerInstance.on('play', function() { closed = false; playing = true; // ADDED }).on('pause', function () { playing = false; // ADDED }).on('adPlay', function() { closed = false; // ADDED playing = true; // ADDED }).on('adPause', function() { playing = false; // ADDED });// get player element position from top of document var playerOffsetTop = getElementOffsetTop(playerContainerEl);// set player container to match height of actual video element playerContainerEl.style.height = playerHeight + 'px';// below we handle window scroll event without killing performance function onScrollViewHandler() { var minimized = getScrollTop() >= playerOffsetTop;if (closed && minimized) { minimized = false; jwplayer().pause(); playing = false; // ADDED } else if (!minimized && !playing) { closed = true; // ADDED } utils.toggleClass(playerContainerEl, 'player-minimize', minimized); // update the player's size so the controls are adjusted playerInstance.resize(); }// namespace for whether or not we are waiting for setTimeout() to finish var isScrollTimeout = false;// window onscroll event handler window.onscroll = function() { // skip if we're waiting on a scroll update timeout to finish if (isScrollTimeout) return; // flag that a new timeout will begin isScrollTimeout = true; // otherwise, call scroll event view handler onScrollViewHandler(); // set new timeout setTimeout(function() { // reset timeout flag to false (no longer waiting) isScrollTimeout = false; }, 80); };});

Activision has announced that Call of Duty: Modern Warfare has had the most successful launch weekend out any Call of Duty title on this console generation.

Modern Warfare generated more than $600 million in its first three days, beating out both Call of Duty: Black Ops 3 and Call of Duty: WWII – the previous two best selling Call of Duty’s on this generation.

Activision also says that Modern Warfare’s opening weekend has more than “doubled” the box office opening of this year’s Joker movie.

Activision’s Call of Duty®: Modern Warfare® had more than $600 million in sell-through worldwide in its first three days of release. The title has sold more units in its first three days than any other Call of Duty® game sold in its first three days in this console generation, and is the top-selling new premium game release of 2019. Modern Warfare also established a new record as the #1 top-selling digital opening in Activision history. With its blockbuster launch, in its first three days of release, Call of Duty: Modern Warfare more than doubled the box office opening of Joker.

Activision stated that Modern Warfare was the biggest digital release in Activision’s history, and the company said that the game set new records on the PS4 store for the most downloads in its opening weekend.

Modern Warfare set new records on the PlayStation Network for the highest digital pre-orders and highest three-day digital sales ever on PlayStation 4. Modern Warfare also has become the #1 top-selling Call of Duty PC launch ever, as opening weekend PC sales on Blizzard Battle.net® were significantly up over last year.

“Call of Duty is once again the top selling new premium game of the year, proving the enduring nature of the franchise across console, PC, mobile, and esports,” said Bobby Kotick, Activision Blizzard’s Chief Executive Officer. “In its first three days of release, Call of Duty: Modern Warfare more than doubled the box office opening of Joker.”

“Through the first three days, Modern Warfare has more total players and total hours played than any Call of Duty opening release in the last six years. More importantly, our players are having a great time playing,” said Rob Kostich, president, Activision. “Congratulations to Infinity Ward and all our teams involved on an incredible game and its spectacular launch. We also want to thank the community for your incredible support. The launch of Modern Warfare is only the start. There’s much more to come.”

In comparison with previous Call of Duty games this generation, Call of Duty: WWII and Call of Duty: Black Ops 4 generated $500 million in revenue in their opening weekends respectively.

comments below

No comments