60fps Games: Most popular Playstation 5 Games List (2025)

'; }); $('.tags-filters[data-type="platforms"]').html(platforms_html); var languages_html = ''; var languages_count = 0; $.each(languages, function(index, value) { languages_html += '

' + value.name + ' (' + value.games_count + ')

'; languages_count++; if(languages_count === 10) { languages_html += '

Show more

'; } }); languages_html += '

Show less

'; $('.tags-filters[data-type="languages"]').html(languages_html); $('.tags-filters .apply-filter[data-type="platform"][data-value="playstation5"]').addClass('filter-item-selected'); $.each(tags_categories, function(index, value) { var tags_categories_html = ''; if($('.tags-filters[data-type="'+value+'"]').length) { var tags_count = 0; $.each(tags, function(tag_index, tag_value) { if(tag_value.category_name === value) { tags_categories_html += '

' + tag_value.name + ' (' + tag_value.used_count + ')

'; tags_count++; if((tag_value.category_name === 'general' && tags_count === 25) || (tag_value.category_name !== 'general' && tags_count === 10)) { tags_categories_html += '

Show more

'; } } }); tags_categories_html += '

Show less

'; } $('.tags-filters[data-type="'+value+'"]').html(tags_categories_html); }); function filterTags() { $('.apply-filter[data-type="tag"]').show(); $('.tags-category').show(); if(filter_tags_by !== '') { $.each(tags_categories, function(index, value) { if($('.tags-filters[data-type="' + value + '"]').length) { var tags_found_count = 0; $.each(tags, function(tag_index, tag_value) { if(tag_value.category_name === value) { var regexObj = new RegExp(filter_tags_by, 'gi'); if(!regexObj.test(tag_value.name)) { $('.apply-filter[data-type="tag"][data-value="' + tag_value.name_minimized +'"]').hide(); } else { tags_found_count++; } } }); if(tags_found_count === 0) { $('.tags-category[data-value="' + value + '"]').hide(); } } }); } else { $('.apply-filter.not-visible').hide(); } } function getGames() { $('.games-list').html('

'); $.post('https://gmag.io/api/games/get', filters ).done(function( data ) { var games_list = ''; if(data.games.length === 0) { $('.games-list').html('No games found :/. Maybe filters too strict? Reset filters.'); } else { $.each(data.games, function(index, value) { $('.filtered_games_count').html(data.total.toLocaleString('en-US')); games_list += '

'; if(typeof value.video !== 'undefined' && value.video !== null) { if(typeof value.video.storage_url !== 'undefined' && value.video.storage_url !== null) { games_list += '

'; } } games_list += '

'; games_list += '

'; if(typeof value.logo !== 'undefined' && value.logo !== null) { games_list += '60fps Games: Most popular Playstation 5 Games List (1)'; } else { games_list += '60fps Games: Most popular Playstation 5 Games List (2)'; } games_list += '

'; games_list += '

'; games_list += '

'; if(typeof value.post !== 'undefined' && value.post !== null) { games_list += '

' + value.name + '

'; } else { games_list += '

' + value.name + '

'; } games_list += '

'; if(typeof value.platform_release_date !== 'undefined' && value.platform_release_date !== null && value.platform_release_date !== 'January 1, 1970') { games_list += value.platform_release_date; } else if(typeof value.first_release_date !== 'undefined' && value.first_release_date !== null && value.first_release_date !== 'January 1, 1970') { games_list += value.first_release_date; } games_list += '

'; $.each(value.platforms, function(platform_index, platform_value) { if(typeof platform_value.logo !== 'undefined' && platform_value.logo !== null) { games_list += '60fps Games: Most popular Playstation 5 Games List (3)'; } }); games_list += '

'; games_list += '

'; var tag_count = 0; $.each(value.tags, function(tag_index, tag_value) { if(tag_count > 0) { games_list += ', '; } games_list += tag_value.name; tag_count++; if(tag_count === 5) { return false; } }); games_list += '

'; games_list += '

'; if(filters['sort-by'] === 'users-ratings') { if(typeof value.critics_rating !== 'undefined' && value.critics_rating !== null) { games_list += 'Critics Rating: ' + value.critics_rating + ' | ' + value.critics_rating_count + ' Critics Ratings' } } else if(filters['sort-by'] !== 'users-ratings') { if(typeof value.users_rating !== 'undefined' && value.users_rating !== null) { games_list += 'User Rating: ' + value.users_rating + ' | ' + value.users_rating_count + ' User Ratings' } } games_list += '

'; games_list += '

'; if(typeof value.description !== 'undefined' && value.description !== null) { if(typeof value.description.text !== 'undefined' || value.description.text !== null) { games_list += value.description.text; } } games_list += '

'; games_list += '

'; games_list += '

'; let amazonKey = value.distributors.findIndex(distributor => distributor.var_name === 'search_on_amazon'); if (amazonKey === -1) { games_list += `60fps Games: Most popular Playstation 5 Games List (4) Search on Amazon*`; } if (value.distributors.length > 0) { let distributorsCount = 0; for (let distributor of value.distributors) { let link = ''; if (distributor.var_name === 'search_on_amazon' && distributor.real_url !== undefined) { distributor.url = distributor.real_url; } link += '

'; if (!/amazon/.test(distributor.var_name)) { link += ''; } if (/amazon/.test(distributor.var_name)) { link += ''; } if (distributor.var_name === 'affiliate') { link += 'Play now*'; } else { link += distributor.name; } link += '

'; games_list += link; distributorsCount++; if (distributorsCount === 3) { break; } } } games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; if(filters['sort-by'] === 'critics-ratings') { games_list += value.critics_rating; } else if(filters['sort-by'] === 'users-ratings') { games_list += value.users_rating; } else if(filters['sort-by'] === 'rising-3-months') { games_list += value.trend_3_months_index; } else if(filters['sort-by'] === 'rising-6-months') { games_list += value.trend_6_months_index; } else if(filters['sort-by'] === 'upcoming') { games_list += value.popularity_index; } else { games_list += value.popularity_index; } games_list += '

'; if(filters['sort-by'] === 'rising-3-months') { games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; } if(filters['sort-by'] === 'rising-6-months') { games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; games_list += '

'; } games_list += '

'; }); $('.games-list').html(games_list); } $('[data-bs-toggle="tooltip"]').tooltip(); }).fail(function() { $('.games-list').html('An error occured. Please try again.'); }); } $(document).on('click', '.show-more', function(event) { $('.tags-filters[data-type="' + $(this).data('type') + '"]>div.not-visible').removeClass('not-visible').show(); $(this).addClass('not-visible'); event.preventDefault(); }); $(document).on('click', '.show-less', function(event) { $('.tags-filters[data-type="' + $(this).data('type') + '"]>div.show-more').removeClass('not-visible').show(); $('.tags-filters[data-type="' + $(this).data('type') + '"]>div.hide-by-count').addClass('not-visible').hide(); $(this).addClass('not-visible'); event.preventDefault(); }); $(document).on('click', '.apply-filter', function(event) { $('.games-list').html('

'); if($(this).data('type') === 'sort-by') { filters['sort-by'] = $(this).data('value'); $('.sort-by-chip').removeClass('sort-by-chip-selected'); $(this).addClass('sort-by-chip-selected'); } if($(this).data('type') === 'tag') { if($(this).hasClass('filter-item-selected') || $(this).hasClass('filter-item-applied')) { if($(this).hasClass('filter-item-applied')) { $(this).remove(); } $('.apply-filter[data-type="tag"][data-value="'+$(this).data('value')+'"]').removeClass('filter-item-selected'); for (i = filters['tags'].length - 1; i >= 0; --i) { if (filters['tags'][i].value == $(this).data('value')) { filters['tags'].splice(i, 1); } } } else { filters['tags'].push({ 'name': $(this).data('name'), 'value': $(this).data('value'), }); $(this).addClass('filter-item-selected'); } } if($(this).data('type') === 'platform') { if($(this).hasClass('filter-item-selected') || $(this).hasClass('filter-item-applied')) { if($(this).hasClass('filter-item-applied')) { $(this).remove(); } $('.apply-filter[data-type="platform"][data-value="'+$(this).data('value')+'"]').removeClass('filter-item-selected'); for (i = filters['platforms'].length - 1; i >= 0; --i) { if (filters['platforms'][i].value == $(this).data('value')) { filters['platforms'].splice(i, 1); } } } else { filters['platforms'].push({ 'name': $(this).data('name'), 'value': $(this).data('value'), }); $(this).addClass('filter-item-selected'); } } if($(this).data('type') === 'language') { if($(this).hasClass('filter-item-selected') || $(this).hasClass('filter-item-applied')) { if($(this).hasClass('filter-item-applied')) { $(this).remove(); } $('.apply-filter[data-type="language"][data-value="'+$(this).data('value')+'"]').removeClass('filter-item-selected'); for (i = filters['languages'].length - 1; i >= 0; --i) { if (filters['languages'][i].value == $(this).data('value')) { filters['languages'].splice(i, 1); } } } else { filters['languages'].push({ 'name': $(this).data('name'), 'value': $(this).data('value'), }); $(this).addClass('filter-item-selected'); } } var filters_applied = ''; var filters_applied_count = 0; if($(this).hasClass('reset-filters')) { filters = JSON.parse(JSON.stringify(filters_reset)); $('.filter-item-applied').removeClass('filter-item-applied'); $('.filter-item-selected').removeClass('filter-item-selected'); $('.filters-applied .apply-filter[data-type="platform"][data-value="playstation5"]').addClass('filter-item-applied'); $('.tags-filters .apply-filter[data-type="platform"][data-value="playstation5"]').addClass('filter-item-selected'); $('.filters-applied').html('

Filters applied

' + '

✕ Playstation 5

' + '

Reset filters

'); } else { $.each(filters['tags'], function(filter_index, filter_value) { filters_applied += '

' + '✕ ' + filter_value.name + '' + '

'; filters_applied_count++; }); $.each(filters['platforms'], function(filter_index, filter_value) { filters_applied += '

' + '✕ ' + filter_value.name + '' + '

'; filters_applied_count++; }); $.each(filters['languages'], function(filter_index, filter_value) { filters_applied += '

' + '✕ ' + filter_value.name + '' + '

'; filters_applied_count++; }); if(filters_applied_count > 0) { $('.filters-applied').html('

Filters applied

' + '

' + filters_applied + '

' + '

Reset filters

'); } else { $('.filters-applied').html('

Filters applied

' + '

None

' + '

Reset filters

'); } } getGames(); }); $('.filter-tags').on('input', function (event) { filter_tags_by = $(this).val(); if(filter_tags_by === '') { $('.clear-filter-tags').hide(); $('.show-more:not(.not-visible)').show(); $('.show-less:not(.not-visible)').show(); } else { $('.clear-filter-tags').show(); $('.show-more:not(.not-visible)').hide(); $('.show-less:not(.not-visible)').hide(); } filterTags(); }); $(document).on('click', '.clear-filter-tags', function() { $('.filter-tags').val(''); filter_tags_by = ''; $('.clear-filter-tags').hide(); $('.show-more:not(.not-visible)').show(); $('.show-less:not(.not-visible)').show(); filterTags(); }); var rangeSlider = wRunner({ roots: document.querySelector('.release-date-slider'), type: 'range', step: 1, limits : { minLimit: 2000, maxLimit: new Date().getFullYear() }, singleValue: 100 }); rangeSlider.setRangeValue({ minValue: 2000, maxValue: new Date().getFullYear(), selected: 100 }); function delay(callback, ms) { var timer = 0; return function() { var context = this, args = arguments; clearTimeout(timer); timer = setTimeout(function () { callback.apply(context, args); }, ms || 0); }; } rangeSlider.onValueUpdate(delay(function (event) { filters['release-date'] = { 'start': event.minValue, 'end': event.maxValue }; getGames(); }, 750)); });

Filter 1 games

Filters applied

✕ Playstation 5

✕ 60fps

Reset filters

Tags

Visuals and Viewpoint

Themes and Moods

Features

Players

Release Date

Platform

Localization

Popularity Critic Ratings User Ratings Rising 3 Months Rising 6 Months Upcoming

60fps Games: Most popular Playstation 5 Games List (6)

Sonic Frontiers

November 8, 2022

60fps Games: Most popular Playstation 5 Games List (7)60fps Games: Most popular Playstation 5 Games List (8)60fps Games: Most popular Playstation 5 Games List (9)60fps Games: Most popular Playstation 5 Games List (10)60fps Games: Most popular Playstation 5 Games List (11)60fps Games: Most popular Playstation 5 Games List (12)

Steam, Ninja, Open World, Fishing, Adventure

User Rating: 70 | 24 User Ratings

100

60fps Games: Most popular Playstation 5 Games List (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Ray Christiansen

Last Updated:

Views: 6293

Rating: 4.9 / 5 (69 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Ray Christiansen

Birthday: 1998-05-04

Address: Apt. 814 34339 Sauer Islands, Hirtheville, GA 02446-8771

Phone: +337636892828

Job: Lead Hospitality Designer

Hobby: Urban exploration, Tai chi, Lockpicking, Fashion, Gunsmithing, Pottery, Geocaching

Introduction: My name is Ray Christiansen, I am a fair, good, cute, gentle, vast, glamorous, excited person who loves writing and wants to share my knowledge and understanding with you.