Modern Warfare PC Specifications Revealed – Update

// 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); };});

UPDATE: Activision Blog has confirmed the PC Specifications for Call of Duty: Modern Warfare in a new post, and they have provided an update as to the 175GB requirement for the game. This is the recommended amount of space for both the base game and the post launch content planned for the game.

In each of the Specs, the HDD references HD space of 175GB. 175GB is the storage space we recommend players keep available in order to download the post-launch content we’ll be bringing to Modern Warfare. At launch, the initial download will be smaller.

Original Story:

Call of Duty: Modern Warfare’s PC Specifications have been revealed.

Battle.net was updated to include both the minimum and recommended specifications for Call of Duty: Modern Warfare ahead of the October 25 launch of the game.

One interesting thing about the specification is that it states the game will require 175GB of hard drive space available to download and install the game when it releases.

Minimum Requirements

  • Operating System: Windows® 7 64-bit (SP1) or Windows® 10 64-bit
  • Processor: Intel® Core™ i3-4340 or AMD FX-6300
  • Video: NVIDIA® GeForce® GTX 670 / NVIDIA® GeForce® GTX 1650 or AMD Radeon™ HD 7950 – DirectX 12.0 compatible system
  • Memory: 8GB RAM
  • Storage: 175 GB available hard drive space
  • Internet: Broadband Internet connection

Recommended Requirements

  • Operating System:Windows® 10 64-bit latest update
  • Processor: Intel® Core™ i5-2500K or AMD Ryzen™ R5 1600X
  • Video: NVIDIA® GeForce® GTX 970 / NVIDIA® GeForce® GTX 1660 or AMD Radeon™ R9 390 / AMD Radeon™ RX 580 – DirectX 12.0 compatible system
  • Memory: 12 GB RAM
  • Storage: 175 GB available hard drive space
  • Internet: Broadband Internet connection

SOURCE: Battle.net

comments below

No comments