{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/INrlWZA3OP3jI7RR5Oyy/7YFWb6nv3y37aTnHpIzd/NOikKVha9-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as o,Link as r}from\"framer\";import{motion as a}from\"framer-motion\";import*as n from\"react\";import{Youtube as i}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";export const richText=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"LOS ANGELES \u2013 Nov. 15, 2024 \u2013\"}),\" Look North World, a pioneering UGC game studio and publisher led by Alexander Seropian, Bungie founder and former Disney executive, and Bandai Namco Entertainment America Inc., today launched \",/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\" via Unreal\\xae Engine for Fortnite (UEFN). The game is a competitive, team-based experience available now in Fortnite for all players worldwide on any platform they play Fortnite on.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Watch the launch trailer for \",/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE \"}),\"here [Link Available at Embargo Lift]\"]}),/*#__PURE__*/t(\"p\",{children:[\"Inspired by the explosive, gritty new Netflix animated series, \u201CGundam: Requiem for Vengeance,\u201D \",/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\" allows up to 20 players each match to align with either the Zeon or Earth Federation Forces factions and square off. When a match starts, players select their battlefield and deploy into their respective bases to equip themselves with an arsenal of their choosing. The primary objectives are to engage in tactical combat to secure the valuable MS Reactor Power. Factions are allocated a Cache in proximity to their base, and additional Caches are distributed across the terrain. Players acquire MS Reactor Power from the Caches. Teams must strategically collaborate to collect 200 MS Reactor Power, which then lets them activate their faction\u2019s signature Mobile Suit, be it the Gundam EX or ZAKU II (Unidentified Type) Solari and have a devastating effect on the tide of battle.\",/*#__PURE__*/e(\"strong\",{children:\"\\xa0\"})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\" brings players the ultimate Gundam power fantasy in Fortnite, with access to a massive arsenal of popular weapons in each faction\u2019s armory to maximize combat and robot takedowns while minimizing searching, looting, and traversing. The game is designed to deliver tense combat and thrills across the battlefield, culminating in an immersive, first-person cockpit view as if they were a real Gundam pilot. Players who take the most vengeance on their enemies will climb the global leaderboards and be entered to win Vbucks and Gunpla model\",/*#__PURE__*/e(\"strong\",{children:\" \"}),\"kits from Gundam: Requiem for Vengeance, with leaderboards resetting each week.\"]}),/*#__PURE__*/e(\"p\",{children:\"\u201CLook North World specializes in creating premium, interactive experiences that align with what\u2019s currently driving culture. Bandai Namco has raised the bar with Gundam: Requiem for Vengeance, and we\u2019ve captured the spirit of the show to create an experience that puts gamers on the battlefield. The experience is available for free in Fortnite, where gamers already love to play. Choose your faction today, and we\u2019ll see you on the scoreboard,\u201D said Alex Seropian, Founder and CEO of Look North World.\"}),/*#__PURE__*/t(\"p\",{children:[\"\u201CThe Gundam series has the most loyal fans, and we\u2019re on a mission to deliver them fresh entertainment and experiences. We\u2019re grateful for the extremely positive reception to Gundam: Requiem for Vengeance, and we\u2019re excited to let fans recreate the experience in Fortnite with fast-paced faction combat in \",/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\",\u201D\\xa0 said Karim Farghaly, senior vice president of corporate development for Bandai Namco Entertainment America Inc. \u201CWe\u2019re proud of what we\u2019ve created by collaborating with Look North World, and we look forward to seeing players square off against each other in Fortnite\u2019s very own Gundam battlefield.\u201D\",/*#__PURE__*/e(\"strong\",{children:\"\\xa0\"})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\" is available to play now by entering the Fortnite Creative Island code 7089-7797-5952.\"]}),/*#__PURE__*/t(\"p\",{children:[\"As part of an ongoing initiative for the GUNDAM Metaverse, \",/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\" is one of the first major projects based on user-generated content that delivers an incredible dive into the world of Mobile Suit Gundam.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Learn more about \",/*#__PURE__*/e(\"strong\",{children:\"GUNDAM: REQUIEM FOR VENGEANCE RED VS BLUE\"}),\" \",/*#__PURE__*/e(r,{href:\"https://www.fortnite.com/@looknorth.world/7089-7797-5952\",nodeId:\"NOikKVha9\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"here\"})})}),\". For more information on Look North World, please visit\",/*#__PURE__*/e(r,{href:\"https://looknorth.world/\",nodeId:\"NOikKVha9\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" https://looknorth.world/\"})}),\". For more information on Bandai Namco Entertainment America Inc., visit\",/*#__PURE__*/e(r,{href:\"https://www.bandainamcoent.com/\",nodeId:\"NOikKVha9\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" www.bandainamcoent.com\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Look North World\"})}),/*#__PURE__*/e(\"p\",{children:\"Look North World is a pioneering UGC game studio and publisher, founded by Alexander Seropian, the creator of Bungie and former Disney executive. With a mission to redefine how games are built, Look North World taps into emerging creator platforms to bring fresh, original games to millions of players. The studio has developed and published five games on Unreal Engine for Fortnite (UEFN) and two Premium Mods for ARK: Survival Ascended. Look North World\u2019s Creator Label program supports and elevates independent makers, helping them build and distribute high-quality UGC experiences. Backed by strategic investors including Bandai Namco Entertainment 021 Fund, Overwolf, Crush Ventures, and Hasbro, Look North World continues to push the boundaries of gaming with major IP collaborations and experimental content that sets it apart from traditional game studios.\\xa0\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"About Bandai Namco Entertainment America Inc.\"}),\"\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"Bandai Namco Entertainment America Inc., part of the Bandai Namco Group, is a leading global publisher and developer of interactive entertainment for major video game consoles, PC, online, and mobile platforms. The company is known for creating many of the industry\u2019s beloved classic franchises such as PAC-MAN\\xae, GALAGA\\xae, TEKKEN\\xae, SOULCALIBUR\\xae, and ACE COMBAT\\xae, and publishing the critically acclaimed DARK SOULS\u2122 series and the blockbuster title ELDEN RING\u2122. Bandai Namco Entertainment America Inc. is also the premier publisher in the Western hemisphere for anime-based video games including GUNDAM\u2122, NARUTO SHIPPUDEN\u2122, DRAGON BALL\u2122, and ONE PIECE\\xae. Bandai Namco Entertainment America Inc. is headquartered in Irvine, California. More information about the company and its products can be found at \",/*#__PURE__*/e(r,{href:\"http://www.bandainamcoent.com/\",nodeId:\"NOikKVha9\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"http://www.bandainamcoent.com\"})}),\".\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"\\xa9SOTSU\u30FBSUNRISE\"}),/*#__PURE__*/e(\"p\",{children:\"Press Release \\xa9Bandai Namco Entertainment America Inc. All other trademarks are properties of their respective owners. This is not sponsored, endorsed, or administered by Epic Games, Inc.\\xa0\"})]});export const richText1=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"October 4, 2024, Los Angeles, CA  \u2014 Look North World, a pioneering UGC game studio and publisher led by Alexander Seropian, Bungie founder and former Disney executive, announced today that it has partnered with Hasbro, a leading toy and game company, to bring three iconic board games to life via Unreal Engine for Fortnite (UEFN). The first title, MURDER MYSTERY: CLUE, launches today on Fortnite.\"}),/*#__PURE__*/e(\"p\",{children:\"The first title MURDER MYSTERY: CLUE reimagines the classic CLUE game within Fortnite, bringing the iconic experience in a new format. This new version incorporates CLUE themes into a popular murder-mystery style game, featuring round-based gameplay with a countdown timer. Players vote on different maps and are assigned hidden roles such as Killer, Detective, or Guest, each with specific win conditions. This new take on CLUE offers a highly replayable experience, blending nostalgia with engaging gameplay that resonates with today\u2019s players.\"}),/*#__PURE__*/e(\"p\",{children:\"Following the launch of MURDER MYSTERY: CLUE, two more iconic titles are set to arrive in Unreal Engine for Fortnite: GUESS WHO, which is scheduled to release later in October, and CONNECT FOUR, which is currently slated for December. These adaptations blend nostalgia with modern gameplay, offering a fresh twist that reimagines these classic board games for today\u2019s Gen Z audiences.\"}),/*#__PURE__*/e(\"p\",{children:\"\u201CBringing our classic games into new mediums like Fortnite is a key strategy as we continue to grow our digital games portfolio through both licensing and internal development,\u201D said Eugene Evans, SVP Digital Strategy and Licensing at Wizards of the Coast and Hasbro. \u201CWe start with games that have attracted fans for decades, and when we partner with a studio like Look North World, we know they understand the essence of what makes these games resonate with players. Look North World brings UGC innovation while staying true to the principles of our original games, creating experiences that are both nostalgic and engaging for new audiences.\u201D\"}),/*#__PURE__*/e(\"p\",{children:\"\u201CLook North World moves at the speed of culture to deliver the experiences gamers want, on the platforms where they are already playing and creating. We are excited to work with Hasbro, a brand that understands the power of user-generated content as a unique opportunity to connect with passionate gamers. Hasbro is embracing community-driven trends\u2014bringing iconic games like CLUE, GUESS WHO and CONNECT FOUR into the spaces where players are most engaged,\u201D commented Alex Seropian, Founder and CEO of Look North World.\"}),/*#__PURE__*/t(\"p\",{children:[\"For more information on Look North World, please visit \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://looknorth.world/.\"})}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/t(\"p\",{children:[\"About \",/*#__PURE__*/e(\"strong\",{children:\"Look North World\"})]}),/*#__PURE__*/t(\"p\",{children:[\"Look North World is a pioneering UGC game studio and publisher, founded by Alexander Seropian, the creator of Bungie and former Disney executive. With a mission to redefine how games are built, Look North World taps into emerging creator platforms to bring fresh, original games to millions of players. The studio has developed and published five games on Unreal Engine for Fortnite (UEFN) and two Premium Mods for ARK: Survival Ascended. Look North World\u2019s Creator Label program supports and elevates independent makers, helping them build and distribute high-quality UGC experiences. Backed by strategic investors including Bandai Namco Entertainment 021 Fund, Overwolf, Crush Ventures, and Hasbro, Look North World continues to push the boundaries of gaming with major IP collaborations and experimental content that sets it apart from traditional game studios.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/t(\"p\",{children:[\"About \",/*#__PURE__*/e(\"strong\",{children:\"Hasbro, Inc.\"}),\" \"]}),/*#__PURE__*/e(\"p\",{children:\"Hasbro is a leading toy and game company whose mission is to entertain and connect generations of fans through the wonder of storytelling and exhilaration of play. Hasbro delivers play experiences for fans of all ages around the world, through toys, games, licensed consumer products, digital games and services, location-based entertainment, film, TV, and more. With a portfolio of over 1,800 iconic brands including MAGIC: THE GATHERING, DUNGEONS & DRAGONS,\u202FHasbro Gaming, NERF, TRANSFORMERS, PLAY-DOH and PEPPA PIG, as well as premier partner brands, Hasbro brings fans together wherever they are, from tabletop to screen. \"}),/*#__PURE__*/t(\"p\",{children:[\"Hasbro is guided by our Purpose to create joy and community for all people around the world, one game, one toy, one story at a time. For more than a decade, Hasbro has been consistently recognized for its corporate citizenship, including being named one of the 100 Best Corporate Citizens by\u202F3BL Media, one of the World\u2019s Most Ethical Companies by\u202FEthisphere Institute\u202Fand one of the 50 Most Community-Minded Companies in the\u202FU.S.\u202Fby the Civic 50. For more information, visit \",/*#__PURE__*/e(r,{href:\"https://corporate.hasbro.com\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://corporate.hasbro.com\"})}),\" or @Hasbro on \",/*#__PURE__*/e(r,{href:\"https://www.linkedin.com/company/hasbro/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"LinkedIn\"})}),\".  \"]}),/*#__PURE__*/e(\"p\",{children:\"\\xa9 2024 Hasbro, Inc. All Rights Reserved. \"})]});export const richText2=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"LOS ANGELES, California, September 27, 2024 \u2014  Today, Look North World, a pioneering UGC game studio and publisher led by Alexander Seropian, Bungie founder and former Disney executive, announced Tower of Heck: Super Only Up, the vertical obstacle course where twenty players compete to climb, power-up, and conquer an insanely tall tower before anyone else. Developed by FarBridge, a studio specializing in immersive experiences on emerging platforms, the title is the latest release through Look North World\u2019s Creator Label, which accelerates and elevates original UGC content with funding and end-to-end support.\"}),/*#__PURE__*/e(\"p\",{children:\"Arriving just in time for Halloween as a UEFN island within Fortnite, Tower of Heck: Super Only Up is the ultimate, thrilling playground for gamers to party up, taunt, compete, and outplay friends this spooky season. Sixteen players load into the bottom of the tower and race to scale the increasingly complex spire by jumping, running, and wall-climbing. Players collect coins as they climb and avoid falling back where they started. But don\u2019t worry! Fails and falls are the key to upgrades, as racers can buy power ups at the bottom of the tower and join back in the action to reach the top of the tower first. There may be no checkpoints, but falling can be the key to victory, so you can always try to convince yourself or your friends that you fell on purpose. Tower of Heck features global leaderboards to show off your skills, share your best time, and secure bragging rights.\"}),/*#__PURE__*/e(\"p\",{children:\"Look North World\u2019s Creator Label is a curated program designed to fund, support, and promote original creations for release on popular UGC platforms. The initiative helps creators and studios make their way into UEFN through benefits including a guaranteed advance, long-term ownership of intellectual property, a marketing budget to support distribution, and access to a team of experts for mentorship, artistic, and technical support.\"}),/*#__PURE__*/e(\"p\",{children:\"\u201CReady, set, jump! Tower of Heck: Super Only Up perfectly showcases the value of accelerated UGC development. I was so excited to welcome the talented FarBridge team into our Creator Label Program and help make their vision a reality on UEFN. Tower of Heck: Super Only Up delivers a thrilling experience to Fortnite gamers when and where they want to play it. It\u2019s a perfect release for the Halloween season,\u201D said Alex Seropian, Founder, and CEO of Look North World.\"}),/*#__PURE__*/e(\"p\",{children:\"\u201CLook North World has been an amazing partner in the creation of Tower of Heck: Super Only Up, guiding us through the unique opportunities and challenges of the Fortnite Creative platform. Their team is second to none when it comes to UGC publishing,\u201D said Donald Harris, Executive Producer at FarBridge. \u201COur community playtests have been full of close calls and contagious laughter, and we're so excited to share the game with the entire Fortnite community!\u201D \"}),/*#__PURE__*/e(\"p\",{children:\"Grab your friends and dare to take on Tower of Heck: Super Only Up by entering the Fortnite Creative Island Code 0159-6233-9704. Tower of Heck: Super Only Up is available today. Players can review the mode on Fortnite or share feedback on social media to influence future content and updates.\"}),/*#__PURE__*/t(\"p\",{children:[\"Learn more about Tower of Heck: Super Only Up \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/games/tower-of-heck\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\". For more information on Look North World, visit \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"looknorth.world\"})}),\" and the Creator Label application \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/creator-label\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"form\"})}),\". Learn more about FarBridge \",/*#__PURE__*/e(r,{href:\"https://farbridge.com/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\". \"]})]});export const richText3=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Today we\u2019re excited to share that \",/*#__PURE__*/e(\"strong\",{children:\"Look North World\"}),\" has raised an additional $2.25M in seed funding, bringing the total to $4.5M. This funding round was led by \",/*#__PURE__*/e(r,{href:\"https://londonvp.com/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"London Venture Partners\"})})}),\" and saw participation from strategic partners such as \",/*#__PURE__*/e(r,{href:\"https://021fund.bn-ent.net/en/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Bandai Namco Entertainment 021 Fund\"})})}),\", \",/*#__PURE__*/e(r,{href:\"https://www.overwolf.com/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Overwolf\"})})}),\", \",/*#__PURE__*/e(r,{href:\"https://crush.ventures/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Crush Ventures\"})})}),\" (the venture arm of Crush Music), \",/*#__PURE__*/e(r,{href:\"https://corporate.hasbro.com/en-us\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Hasbro\"})})}),\", \",/*#__PURE__*/e(r,{href:\"https://www.pixcapitals.net/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"PixCapital\"})})}),\", and returning investors \",/*#__PURE__*/e(r,{href:\"https://opencorporates.com/companies/us_wy/2019-000850684\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Hibbard Road Partners\"})})}),\". We are deeply grateful to our new and existing investment partners who share our vision that UGC will be a core pillar of the future of gaming. With 15 games in development featuring major IP deals, we will use the investment to accelerate the creation of original games while continuing to push the boundaries on how games are built using UGC.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"Our partnerships with Bandai Namco Entertainment and Hasbro mark a pivotal moment for Look North World. These collaborations will not only bolster our resources but also reinforce our strategy to create and distribute original, compelling games.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Launching the Creator Label And Taking Risks on Unique Games\"})}),/*#__PURE__*/t(\"p\",{children:[\"One of our most exciting initiatives is the launch of the Creator Label, a curated program designed to support and elevate individual creators on platforms like Fortnite, Roblox, and Minecraft. This program provides signed creators with numerous benefits, including guaranteed advances, long-term intellectual property ownership, marketing budgets, and a team of industry experts offering artistic and technical support. Our first signed creators, \",/*#__PURE__*/e(r,{href:\"https://x.com/thomasjanky?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Tom Jank\"})}),\" and \",/*#__PURE__*/e(r,{href:\"https://x.com/sleightedsloth\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" SightedSloth\"})}),\", are already making an impact with their innovative projects.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"The Creator Label reflects our commitment to embracing the future of game-making talent, enabling us to support creators and take risks on unique games that might otherwise never get greenlit. We believe that tomorrow's hit game makers are growing up on Fortnite and Roblox, and the Creator Label is our way of helping them reach their potential.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Redefining How Games Are Built Using UGC\"})}),/*#__PURE__*/e(\"p\",{children:\"At Look North World, we are honored to be able to leverage emerging creator platforms to build games for millions of players. There is a tectonic shift occurring in the games industry.\\xa0 More people are playing games than ever before, yet it\u2019s become increasingly challenging to make new games successful. At Look North World, we have embraced this industry shift by choosing to build within platforms that allow experimentation, quick iteration, and access to a massive audience. We\u2019ve already developed and published five games on Unreal Engine for Fortnite (UEFN) and two Premium Mods for ARK: Survival Ascended. Our first creator label game, Dream Job Tycoon, and our ARK x POWER RANGERS Premium Mod have been incredibly successful, with the latter surpassing 800,000. It\u2019s been a busy year, and we have no plans of slowing down. We have barely scratched the surface of what\u2019s possible and we are excited about what\u2019s next on our roadmap.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Join Us on Our Journey\"})}),/*#__PURE__*/e(\"p\",{children:\"We\u2019re incredibly excited about the future and the role Look North World will play in shaping gameplay experiences for the next generation of gamers and we are grateful for the creators, partners, and investors who are joining us to champion this. The time is now to embrace this new generation of game-making and it\u2019s an honor to be on this journey with you.\\xa0\"})]});export const richText4=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Look North World has launched it's premium mod, the \",/*#__PURE__*/e(r,{href:\"https://www.curseforge.com/ark-survival-ascended/mods/enclave\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Mighty Morphin' Cosmetic Pack\"})})})}),/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\", \"})}),\"marking it's sixth release as a studio. \"]}),/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(i,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=WtUZZfhVmLU\"})})}),/*#__PURE__*/t(\"p\",{children:[\"This premium mod includes content for the \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Red Ranger, Blue Ranger, Black Ranger, Pink Ranger,\"})}),\" and \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Yellow Ranger,\"})}),\" complete with \",/*#__PURE__*/e(\"strong\",{children:\"Power Weapon\"}),\" skins, \",/*#__PURE__*/e(\"strong\",{children:\"Dinozord\"}),\" skins, and unique animations. Thanks to ASA\u2019s new cosmetic system, even players who don\u2019t own the cosmetic pack can still see skins in-game!\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Gather your friends and form the ultimate team of \u201C\",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Power Rangers Survivors\"})}),\"\u201D!\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),'Look North World continues to strive to create fun, engaging new ways for the online community to interact with their favorite IPs as well as our own creations. Our goal is for players to experience unique game-styles, detailed cosmetics and a blend of modern meets nostalgic with the \"',/*#__PURE__*/e(r,{href:\"https://www.curseforge.com/ark-survival-ascended/mods/enclave\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Mighty Morphin' Cosmetic Pack\"})})})}),/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:'\".'})})]})]});export const richText5=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We are proud to announce - Enclave: Survival Skyward (ESS), an ARK Premium Mod, is out now on PC \uD83C\uDFAE\"}),/*#__PURE__*/e(\"p\",{children:\"A once thriving civilization now lies in toxic ruins. The few survivors have sought refuge in the heights of abandoned buildings, far above the lethal gas and savage beasts. But even the heights have their dangers in Enclave: Survival Skyward (ESS).\"}),/*#__PURE__*/e(\"p\",{children:\"Created on the breakout hit game ARK: Survival Ascended, Enclave: Survival Skyward (ESS) brings a new aspect to the beloved game ARK - the skies! Now, battles and treasures are not just around you, but also above and below.\"}),/*#__PURE__*/e(\"p\",{children:\"The jungle is fuller than ever with dangerous animals and treasure, and bases are now built in tall reclaimed skyscrapers.\"})]});export const richText6=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Look North World\"}),\" has successfully launched their sixth official release; Dream Job Tycoon (Map Code: 6751-8349-8937). Built on Fortnite Creative (UEFN), players can experience dream-jobs like Cart Attendant, News Delivery, Lawn Care, Professional Boxer, Taxi Driver, Deep Sea Diver, Dancer, Bird Photographer and Miner.\\xa0\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Using a Tycoon-progression system, players complete jobs and gain Stars which help unlock new Zones and new Jobs. Cosmetic hats are also available that add different bonuses to your character and help complete jobs faster! Unlock hats using the merch booth or find the ones hidden around the different job sites, can you find them all?\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Dream Job Tycoon offers a fun, dynamic experience for players of all types. Complete each Job, Unlock every hat, and brag to your friends by showing off all of your Stars.\\xa0\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Roll up your sleeves and find your \",/*#__PURE__*/e(r,{href:\"https://www.fortnite.com/@looknorth.world/6751-8349-8937\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Dream Job today!\"})}),\" \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(r,{href:\"https://www.fortnite.com/@looknorth.world/6751-8349-8937\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://www.fortnite.com/@looknorth.world/6751-8349-8937\"})}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Look North World prioritizes developing and releasing fun dynamic new games to meet the wants and expectations of a online community 60,000 strong. Look North World's sixth game and the first released under their creative label, developed by \",/*#__PURE__*/e(r,{href:\"https://twitter.com/thomasjanky\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"TomJank\"})}),\", this game signals Look North World's ambition to be the top publisher on UGC platforms.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"More information about Look North World is available at https://looknorth.world/.\"]}),/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(i,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=FYEuvo02_94\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});export const richText7=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"LOOK NORTH WORLD ANNOUNCES LAUNCH OF FORTNITE CREATIVE ISLAND \u201CDON'T PRESS THE BUTON\u201D\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"UGC Video Game Publisher Look North World announces the launch of Don't Press The Button in Fortnite Creative. This is a party game is a multi-room box fight genre hybrid utilizing UEFN's newest camera device. \"})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"LOS ANGELES, CA (December 14, 2023) -- \"}),'Look North World (LNW) today launched their latest Fortnite Creative (UEFN) game, \u201CDon\\'t Press The Button (DPTB)\u201D (Map Code: 0512-7398-3529). DPTB is a genre hybrid mash up of Party Game and Box Fight. Players select their loadout in a staging area, run a maze to collect loot, and then converge into one of five arenas to battle it out. Alternatively, players may choose, and \"press the button\" in each area to transport everyone to them. ']}),/*#__PURE__*/e(\"p\",{children:'Look North World is a UGC video game developer and publisher, creating entertainment within today\\'s most vibrant gaming communities. Their first game, \"Outlaw Corral,\" was released in July of this year to much acclaim on UEFN, earning the coveted Epic Picks and a feature at The Game Awards. The launch of their second game, \"Carrera Coast,\" included a performance from viral EDM artist Marc Rebillet and hosted the largest prize pool tournament in Fortnite Creative history. \"CNTRL\", the companies third release was a cyberpunk love letter to tactical shooters of the late 90s and early 2000s. The company is currently developing multiple titles for multiple UGC platforms.'}),/*#__PURE__*/t(\"p\",{children:[\"More information about Look North World is available at \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://looknorth.world/\"})}),\".\\xa0\"]})]});export const richText8=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"LOOK NORTH WORLD ANNOUNCES LAUNCH OF THIRD FORTNITE CREATIVE ISLAND \u201CCNTRL\u201D\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"AAA developer Look North World announces the launch of CNTRL in Fortnite Creative. This is a 5v5 tactical shooter set in a dystopian sci-fi city\"})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"LOS ANGELES, CA (December 14, 2023) -- \"}),'Look North World (LNW) today launched their latest Fortnite Creative (UEFN) game, \u201CCNTRL\u201D (Map Code: 8441-8139-8805). CNTRL is a tribute to classic \"Search and Destroy\" tactical shooters of the early 2000s, set against the dystopian sci-fi backdrop of Blank City. Players can enjoy defending their base as CNTRL or attacking as Jinsei. They can take turns planting or defusing the bomb, using earned gold to purchase better weapons and consumables between rounds.']}),/*#__PURE__*/e(\"p\",{children:\"Alex Seropian, CEO of Look North World, expressed his enthusiasm about the map, \\\"CNTRL combines the characters and gear of Fortnite with a refreshing and innovative twist. The visual style of Blank City brings a unique look to UEFN that sets it apart. And the tactical play, with a group of friends, is an absolute blast. We can't wait for you to dive in and enjoy the excitement.\u201D\"}),/*#__PURE__*/e(\"p\",{children:'Look North World is a AAA developer and publisher, creating entertainment within today\\'s most vibrant gaming communities. Their first game, \"Outlaw Corral,\" was released in July of this year to much acclaim on UEFN, earning the coveted Epic Picks and a feature at The Game Awards. The launch of their second game, \"Carrera Coast,\" included a performance from viral EDM artist Marc Rebillet and hosted the largest prize pool tournament in Fortnite Creative history. The company is currently developing multiple titles.'}),/*#__PURE__*/t(\"p\",{children:[\"More information about Look North World is available at \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://looknorth.world/\"})}),\".\\xa0\"]})]});export const richText9=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"LOOK NORTH WORLD ANNOUNCES BIGGEST PRIZE POOL IN FORTNITE CREATIVE HISTORY FEATURING SPECIAL GUEST MARC REBILLET\"})}),/*#__PURE__*/e(\"p\",{children:\"AAA Developer Look North World Announces Unprecedented $18,000 and 300,000 V-Bucks Tournament Prize Pool For Their Second Fortnite Creative Game in UEFN\\xa0\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"LOS ANGELES, CA (October 25, 2023) -- \"}),\"Look North World (LNW) today launched a tournament in support of their latest Fortnite Creative (UEFN) game, \u201CCarrera Coast\u201D (Map Code: 4062-6254-3257). This exciting competition boasts a record-breaking prize pool, offering winners a staggering $18,000 and 300,000 V-Bucks\u2014the most substantial rewards ever witnessed in a Fortnite Creative tournament.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"This is also the first Fortnite Creative map to independently feature a celebrity music performance, outside of Epic Game\u2019s direct development efforts. Marc Rebillet, aka \u201CLoop Daddy\u201D, the internet sensation who woke up over 32 million of us with his improvised performance of \u201CYOUR NEW MORNING ALARM\u201D on YouTube, brings new music to the metaverse via an independent collaboration with LNW. His 20-minute live recorded set inside of \u201CCarrera Coast'' serves up a classic \u201CLoop Daddy\u201D backdrop to LNW\u2019s latest creative efforts in Fortnite.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Carrera Coast is a spiritual homage to classic shooters of the 90s and early 2000s to support a wide range of gameplay with asymmetric gameplay. Players are able to qualify for an $18,000 prize pool bracket tournament on November 9th, 2023 alongside some of the biggest Fortnite streamers, including Bewitching, Bhronos, FoxMan, HappyHappyGal, Swearin, and GoatR2, and hosted by unamusedbryson and Carter2K. All participants stand a chance to claim their share of the 300,000 V-Bucks prize pool by engaging in daily challenges from October 25th to November 3rd.\"}),/*#__PURE__*/e(\"p\",{children:'Patrick Moran, COO of Look North World, emphasizes their commitment to providing players and content creators with unparalleled value. \"The most effective marketing campaigns begin with immense value for players and equipping content creators with tools to engage and play alongside their audiences. Our culture of experimentation extends from game development to our marketing and publishing operations, where we aim to build the playbook for publishing on Fortnite Creative through experimentation with each release\"'}),/*#__PURE__*/e(\"p\",{children:\"Look North World is a AAA developer and publisher creating entertainment inside today's most vibrant gaming communities. LNW's first game, \\\"Outlaw Corral'' released in July of this year to much acclaim on UEFN, including the much coveted Epic Picks. The company currently has multiple titles under development.\"}),/*#__PURE__*/e(\"p\",{children:\"To join the cash prize and V-Bucks tournament qualifier and challenges, please visit https://teamhero.gg/.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"More information about Look North World is available at https://looknorth.world/.\\xa0\"})]});export const richText10=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Welcome to our first blog post at Look North World! \"}),/*#__PURE__*/e(\"p\",{children:\"For this post, I want to start from the beginning. \"}),/*#__PURE__*/t(\"p\",{children:[\"We started a company to \",/*#__PURE__*/e(r,{href:\"https://looknorth.world/blog/look-north-world-and-outlaw-corral-announced\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"build experiences within Fortnite\"})}),\". Why am I so excited about this? What\u2019s it like working in UEFN compared to working on a multi-million dollar AAA mobile game? Do I miss working in a \u201Creal programming language\u201D like C++? Let\u2019s get started!\"]}),/*#__PURE__*/e(\"p\",{children:\"So, how are things different from AAA dev? First, the scope of what you can build (right now) in UEFN is just more limited. I find this to be the titular breath of fresh air. Coming off of a 6+ year project that was never globally released, the idea that we could build a fun experience in only a few months is extremely exciting. Not to mention, there are hundreds of millions of Fortnite players out there that are looking for new experiences within the game. As a software engineer and game designer, I find that constraints fuel creativity.\\xa0\"}),/*#__PURE__*/t(\"p\",{children:[\"One of my first successful projects as a game developer was \u201C\",/*#__PURE__*/e(r,{href:\"https://en.wikipedia.org/wiki/Where%27s_My_Water%3F\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Where\u2019s My Water?\"})}),\"\u201D The constraint for that game was to build a level-based physics puzzler in the vein of \u201CAngry Birds\u201D or \u201CCut the Rope.\u201D The game should be playable without scrolling and with a single input (i.e. your finger). That quickly eliminated a lot of genres and allowed our team to focus our creativity on one type of game. The same is true of UEFN. Right now, you can\u2019t build \u201CWhere\u2019s My Water?\u201D or anything else that is a huge departure from the traditional \u201CFortnite\u201D gameplay, and I find that invigorating.\"]}),/*#__PURE__*/e(\"p\",{children:\"Another difference comes from how game logic is built. UEFN introduced scripting into the Fortnite Creative ecosystem via the Verse programming language. While I\u2019ve never used Haskell or Swift, Verse seems to take a lot of syntax and ideas from both languages (one of the creators of Verse also created Haskell, so that makes sense). \"}),/*#__PURE__*/e(\"p\",{children:\"Coming from C++, there is a lot I like about Verse. The syntax is different and takes some getting used to but once you are used to the idiosyncrasies of the language, you really start to fly. This could be a whole \u2018nother blog post but the way Verse handles concurrency is pretty interesting. Also, with Verse in UEFN, there are no \u201Cupdate\u201D functions. You use the latent/concurrency features of the language to handle anything that requires periodic updates.\"}),/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(i,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/BbaD-FUItmM\"})})}),/*#__PURE__*/e(\"p\",{children:\"Building game logic in UEFN is like gluing puzzle pieces together. You have to find the right puzzle pieces, and then you use Verse to glue those pieces together. \"}),/*#__PURE__*/e(\"p\",{children:\"Let me give you an example from Outlaw Corral. You may have noticed while spectating someone who wins a match that the weapon spawners are switching weapons (as in the video above). We wanted to pick a random weapon every round and didn't want those weapons to repeat between different rounds in the same tournament. In a traditional game engine, we could simply code that logic - create an array of weapons, pick a random index in the array, mark that index as used, and spawn the one we picked.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"In UEFN, it\u2019s a bit more complicated. The weapon spawner takes an array of items it will spawn but you can\u2019t randomly index into it. There is an API to go to the next item but it doesn\u2019t do anything unless the item is spawned. So in order for us to achieve our goals, we have to connect a few devices and some custom logic together. First, we have a Verse device that \u201Ctracks\u201D the current index in the array of the item spawner. Because we actually have to spawn the weapons and we don\u2019t want them to just be sitting there in the level, we also need a mutator zone that gives pickups a very short lifetime. So we iterate to the index we randomly pick, spawning and despawning all of the weapons along the way. This may seem cumbersome, and it is, but it\u2019s also fun to figure out how to achieve your goals with the puzzle pieces you have.\"}),/*#__PURE__*/t(\"p\",{children:[\"While UEFN has been a positive development experience for us, there are a few things on my wish list. One of the main things that I\u2019m hopeful for is that\",/*#__PURE__*/e(r,{href:\"https://forums.unrealengine.com/t/ask-epic-anything-programming-scripting-may-24th-2023-at-12-30pm-est/1168968/82?u=alk3ovation\",nodeId:\"NOikKVha9\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" Epic will continue to improve upon its debug facilities\"})}),\". Currently, there are two main ways to debug problems in your game. First, there is a Verse API for debug drawables. The API will be familiar to developers who have experience in Unreal Engine. You can draw colored wireframe shapes anywhere in the world. The second way to debug, which many programmers will hold near and dear to their heart is print debugging. I recently saw a debate on twitter where people said they don\u2019t need anything more than print debugging, while the other side said it\u2019s impossible to debug without a debugger. I\u2019m in the camp of: \u201CYou don\u2019t need a debugger until you do.\u201D There are certain classes of problems that are just easier to debug with an actual debugger. That aside, UEFN print based debugging works just fine\u2026 most of the time.\"]}),/*#__PURE__*/e(\"p\",{children:\"In my opinion, there are a few improvements to be made here. First, the logs are streamed to the editor from the server hosting the creative session. If you have too many log statements, they get throttled and some logs may be lost, so making sure logs do not get lost would be a huge improvement. Second, logs are only available in creative sessions attached to the editor. Private and public island codes do not have accessible logs or other debug information. Some bugs may only occur in a live environment or at scale so having access to live debug info would be beneficial to most teams. For example, live logs could have a different log level and/or could be throttled so as not to affect the experience.\"}),/*#__PURE__*/e(\"p\",{children:\"As it is, we\u2019ve resorted to putting some relevant information on the screen in semi-transparent text so as not to distract players. You can see this text in the top left corner of the screen. This way if players took screenshots of a bug, we could get some information about the state of the world. We felt the trade off of having some \u201Cweird\u201D text visible to the player was worth maximizing our ability to address bugs in live.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Miebb66g6uaYuegrA5eId8sDU.png\",\"data-framer-height\":\"606\",\"data-framer-width\":\"1089\",height:\"303\",src:\"https://framerusercontent.com/images/Miebb66g6uaYuegrA5eId8sDU.png\",srcSet:\"https://framerusercontent.com/images/Miebb66g6uaYuegrA5eId8sDU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Miebb66g6uaYuegrA5eId8sDU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Miebb66g6uaYuegrA5eId8sDU.png 1089w\",style:{aspectRatio:\"1089 / 606\"},width:\"544\"}),/*#__PURE__*/t(\"p\",{children:[\"I\u2019m super excited about the future of UEFN. Like any new platform, there are lots of things that can be improved upon. The cadence of updates from Epic and the excitement within the community have me looking to the future with enthusiasm for the adventure ahead. If this post has piqued your interest in developing on UEFN, \",/*#__PURE__*/e(r,{href:\"mailto:resumes@looknorth.world\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"drop us a line\"})}),\" and keep an\",/*#__PURE__*/e(r,{href:{webPageId:\"Qy3d9KNeZ\"},nodeId:\"NOikKVha9\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" eye out for future job openings\"})}),\" here at Look North World.\"]})]});export const richText11=/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"LOOK NORTH WORLD, A NEW DEVELOPER AND PUBLISHER OF GAMES FOR UNREAL ENGINE FOR FORTNITE (UEFN)\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"AAA Developers Alex Seropian and Team Launch First of Several Original Games and Entertainment on Creator Platforms \"})})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"LOS ANGELES, CA (July 18, 2023) -- \"}),\"Look North World today welcomes gamers to be a part of their new community-focused game studio, starting with the launch of their first game, Outlaw Corral, available now in Unreal Engine for Fortnite (UEFN). Driven to experiment and explore the building of unique high-quality social games and entertainment, the studio will deliver experiences that bring players together in virtual spaces and gaming platforms. Look North World is led by developers with AAA hits in their back pockets and quirk in their brains such as Alex Seropian of Bungie, Disney and Industrial Toys fame, and Patrick Moran, formerly from Amazon, Disney and Kongregate.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Outlaw Corral, a wild west island featuring skill-based shootouts, is the first of several games in development. Players are able to have an active role in providing input to future Look North World games by joining the company\u2019s \",/*#__PURE__*/e(r,{href:\"https://discord.gg/looknorthworld\",nodeId:\"NOikKVha9\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Discord\"})}),\". The first 1,000 Discord members will be automatically added to the company\u2019s Beta Test channel to help test new games before release. \"]}),/*#__PURE__*/e(\"p\",{children:\"\u201CDeveloping in UEFN opens a whole new world of opportunities and we are in uncharted territory. Through experimentation we will see what the players like and involve them in decisions. We will throw in a mix of fun game components that players love with a healthy dose of humor when we can,\u201D said CEO Seropian. \u201CWe are jumping into it with a \u2018the virtual sky is the limit\u2019 mentality. As we develop creative ideas, we will learn how these platforms engage, entertain and boost social interactions in order to iterate accordingly.\u201D\"}),/*#__PURE__*/e(\"p\",{children:\"Look North World also includes several industry wizards from Industrial Toys/EA. These talents include CTO Jay Pecho, Principal Artist Aaron Marroquin, Art Director Prashant Patil and Creative Director Kyle Marks. Look North World\u2019s seed round is led by London Venture Partners, a leader in gaming-focused venture capital funding. They are joined in this initial round by 1Up Ventures and Hibbard Road Partners.\"}),/*#__PURE__*/e(\"p\",{children:\"\u201CWith an impressive track record under their collective belts, this AAA team led by Alexander Seropian is set to revolutionize the way games are made,\u201D said Matt Bilbey, partner at London Venture Partners. \u201CWe are excited to be on this journey with Look North World as they work with the gaming community to shape new game concepts, storylines, and designs.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Look North World\"})}),/*#__PURE__*/e(\"p\",{children:\"Founded in 2023 by game industry hit makers Alex Seropian and Patrick Moran, Look North World is a game studio driven to experiment and explore while focusing on building unique high-quality social games and entertainment. Funding led by London Venture Partners, a leader in gaming focused venture capital, Look North World will bring players together in community-driven virtual spaces and experiences. https://looknorth.world/\"}),/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(i,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=ThTb26MZo2g\"})})})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "Link", "richText1", "richText2", "richText3", "richText4", "motion", "ComponentPresetsConsumer", "t", "Youtube", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "__FramerMetadata__"]
}
