Call of Duty: Modern Warfare Crossplay Open Beta Day 2 Recap

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

Day 2 of the Call of Duty: Modern Warfare Crossplay Open Beta on PlayStation 4, Xbox One, and PC is wrapping up, and Infinity Ward has shared on Reddit a recap of the day, including what they’re looking into after Day 2 and more.

The studio is continuing to look at the feedback from issues on Xbox One and PC, crashes on other platforms, and more.

Infinity Ward also added in the brand new Ground War mode to the Beta tonight as a surprise, ahead of the planned release time for the mode in the Beta.

The studio also provided an update on what additional content to expect going into Day 3 of the Crossplay Open Beta.

FROM INFINITY WARD:

IT’S TIME TO OPEN THE FLOOD GATES! The Call of Duty: Modern Warfare Crossplay Beta is now OPEN TO EVERYONE AND 32V32 GROUND WAR IS NOW AVAILABLE! Beginning now and running to the morning of Monday, September 23, the Beta is accessible to all players on PlayStation, Xbox One, or PC, regardless of pre-ordered status. If you’ve got an Xbox One, Xbox Live Gold is required to play. If you have a PC, a Battle.net account is required to play. Other than these prerequisites and an internet connection, you should have everything you need to play!

Post image

Feedback We’re Looking Into:

Since the Beta kicked off, we’ve been tracking your feedback and we’ll continue to do so throughout the weekend. This isn’t everything you’ve reported, but here are some of the bugs and fixes we’ve been tracking…

  • Xbox users: We know of a bug with invites and joining up from the Xbox Dashboard. While this is being investigated, you can still send invites and join up with friends within the game.
  • Staying as a Party after a match: After completing a match as a party, some players are unable to find a new match and are stuck in the matchmaking lobby. We’re still looking into this issue, but in the meantime, disbanding your party and joining back up is a temporary solution while we work on a fix.
  • Spawning and Visuals: Spawning is currently inconsistent on some maps, so thank you for sharing your videos with us and sharing your feedback. We’ll continue to monitor the spawn system and we’ll update you if we deploy any changes. We will also be looking into lighting and exposure on various areas of the map, such as how you view dark rooms from the outside of a building and vice versa, for example.
  • PC: Blurriness while ADSing or in the matchmaking lobby.
  • PC: Some users are experiencing crashes. Please check existing threads on here if you’re experiencing any of these issues)
  • Voice chat: Voice chat is inconsistent when joining up with players on other platforms. This is being investigated.

SOURCE: Reddit

comments below

No comments