/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})(); Astro Bot Archives - The Tach https://thetach.com/?tag=astro-bot Wed, 11 Dec 2024 17:43:10 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 Astro Bot Gets New Free Winter Wonder Level https://thetach.com/?p=913 https://thetach.com/?p=913#respond Wed, 11 Dec 2024 17:43:09 +0000 https://thetach.com/?p=913 Sony has washed over gaming fans with its latest announcement. We can look forward to a new level in Astro Bot, the PlayStation 5 game exclusive, this Winter in the form of the Winter Wonder Level.  This eagerly awaited expansion arrives tomorrow, December 12, bringing holiday cheer to all fans of the critically acclaimed platformer. ... Read more

The post Astro Bot Gets New Free Winter Wonder Level appeared first on The Tach.

]]> Sony has washed over gaming fans with its latest announcement. We can look forward to a new level in Astro Bot, the PlayStation 5 game exclusive, this Winter in the form of the Winter Wonder Level.  This eagerly awaited expansion arrives tomorrow, December 12, bringing holiday cheer to all fans of the critically acclaimed platformer. The update is free for all owners of Astro Bot, launching at 6 PM Pacific / 9 PM Eastern in the U.S., and 2 AM on December 13 for players in the UK. However, players must complete the base game to unlock this cheerful addition.

What Makes the Winter Wonder Level Special?

The Winter Wonder Level is designed to immerse players in a magical holiday experience. Some of the features that have been leaked earlier in the beta include a joyful atmosphere, decorations, and various other shiny things. Here are some of the standout features: A picture showing a large Christmas tree with many bulbs hung on it and around it. Luminous and animated gifts are placed throughout the level for the players to find and bring on screen. Glad ringing of bells and lovely tunes put everyone into the festive mood. More bots come in into Astro Bot’s team, which is the beauty of the game.

The level is intended for both beginners and regulars so that everyone can have fun during the New Year’s period. In contrast to the rest of the levels in the game that lack some challenge, Winter Wonder is a work of entertainment only.

Astro Bot: A Phenomenon Among PlayStation Fans

Astro Bot turned out to be one of the main pillars of the PlayStation 5 experience once it was out. It also helps that it became a popular game and was sold 1.5 million copies during the first two months after the game came out making it one of the most successful games for the console. Audiences have appreciated Astro Bot for its innovative gameplay, good visuals, and levels’ design, as well as storyline. The internet gaming network gave this particular game a jaw-dropping 9/10, categorizing it as a wonderfully creative platformer. The combination of the familiarity feel and breaking the circular continuity has been appreciated by enthusiasts which is a strong selling point for digital gaming in the PlayStation 5 slot.

How to Unlock the Winter Wonder Level

Accessing the Winter Wonder Level is straightforward but requires some preparation. Players must first have to go through the basic gameplay in order to access the additional festive elements. This requirement means that players know how the game actually works, in order to appreciate the new features and experiences. The expansion will become downloadable as a free app, and will be included in the game for anybody who owns Astro Bot; players should verify that their copy of the game is the latest to prevent any problem.

Festive Surprises Await in Winter Wonder

For the most part, what remains is merely wonderful scribbles on a notebook, but Team Asobi chose to give fans a small tease. That is why the Winter Wonder Level is meant to reflect the fun and emotion of the holiday season.

Winter Wonder Level
Source: polygon.com

There is hope players will get a new chance to visit a gorgeous winter environment filled with clickable objects and treasures that can be found. The level consists of the Christmas theming and varies in difficulty from shiny ornaments to secret paths. The addition of new bots to the crew adds another layer of excitement, as players can interact with these charming characters while progressing through the level.

The Role of Free Expansions in Gaming

Free expansions like Winter Wonder are more than just updates—they’re a testament to a studio’s appreciation for its community. By offering fresh content without additional costs, developers like Team Asobi strengthen their bond with players while maintaining long-term engagement with their games. For Astro Bot, this expansion ensures that the game remains relevant and celebrated during the holiday season. Such gestures also set a positive example in the industry, highlighting the value of community-driven development.

A Heartfelt Gesture from Team Asobi

The announcement was made with an emotional note from Nicolas Doucet, the studio head at game development firm Team Asobi. Doucet passed on the team’s appreciation of the generosity shown to them by the community of gamers. “Since launching Astro Bot earlier this year, truly we have received a lot of positive response from fans and critics worldwide,” he added. The free expansion shows the director’s and more broadly, the studio’s commitment to their fans. As a token of appreciation, Team Asobi has ensured that this update will resonate with players of all ages. With its festive theme and engaging gameplay, Winter Wonder celebrates the strong connection between developers and their fans.

Why Winter Wonder Is a Holiday Must-Play

The Winter Wonder Level is not just an update it’s a festive celebration that embodies the joy of the season. It is fun to look at, encourages participation, and is completely easy to play to boot, making it suitable for all kinds of people. If you are one of those Astro Bot fans from the very start or a newcomer to this franchise. This expansion is a ride you wouldn’t want to miss. It’s always good fun to indulge oneself in the festive spirit with appropriate decorations and animations brought to proper creation.

The Legacy of Astro Bot and Team Asobi

Astro Bot has grown into a sign of innovation in causing competitive gaming in the global platforms. Thus, Team Asobi has shown over and over that they can construct experiences that feel personal and special for all participants.

Astro Bot Holiday Adventure
Source: gamerant.com

This release of the Winter Wonder Level also goes to prove that the studio is with its fans. In this way, by increasing and developing the game. Team Asobi guarantees that Astro Bot will remain one of the favorites for several years.

Conclusion

The Winter Wonder Level release is not just a holiday DLC but it is a positive statement of everything that developers and gamers have become. The elating environment this expansion brings, the fun game mechanics. And smart implementations make this one for PlayStation 5 owners to consider. To celebrate the upcoming holiday, Astro Bot allows players to wrap themselves into warm scarves and set off with them on a winter wonderland adventure. Come back and play the updated version of the game beginning tomorrow.

FAQs

When will the Astro Bot Winter Wonder Level be available?

The Winter Wonder Level will launch on December 12 at 6 PM Pacific.

Is the Winter Wonder Level free for players?

Yes, the Winter Wonder Level is free but requires the base game to be completed.

What features are included in the Winter Wonder Level?

It includes a Christmas tree, shiny presents, jingle bells, and new bots.

Who developed the Winter Wonder Level for Astro Bot?

The Winter Wonder Level was developed by Team Asobi, the creator of Astro Bot.

Is the Winter Wonder Level suitable for all ages?

Yes, the level is designed to be enjoyable and accessible for both kids and adults.

The post Astro Bot Gets New Free Winter Wonder Level appeared first on The Tach.

]]>
https://thetach.com/?feed=rss2&p=913 0