Skip to content

Commit b6bf3b9

Browse files
Updated docs and replaced outdated speed-racer (#4903)
## Problem solved * Updated Unreal Engine docs * Replaced speed-racer references with tappyfowl * Fixed all references of `unreal` to `unreal-engine` <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on renaming the `unreal` module to `unreal-engine`, updating related paths, icons, and metadata throughout the codebase. It also introduces new wallet functionalities and modifies some documentation for clarity. ### Detailed summary - Renamed `unreal` to `unreal-engine` across various files. - Updated paths and references in `Header.tsx`, `layout.tsx`, and `sidebar.tsx`. - Changed icon references from `UnrealIcon` to `UnrealEngineIcon`. - Modified metadata functions to use `createUnrealEngineMetadata`. - Added new wallet functionalities in `in-app-wallet` and `wallet-handles`. - Updated documentation in multiple `.mdx` files to reflect changes. - Deleted obsolete assets and files related to the old `unreal` structure. > The following files were skipped due to too many changes: `pnpm-lock.yaml`, `apps/portal/src/app/unreal-engine/blueprints/utilities/nodes.ts`, `apps/portal/src/app/unreal-engine/blueprints/in-app-wallet/nodes.ts`, `apps/portal/src/app/unreal/blueprints/smart-wallet/nodes.ts` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 0f6b881 commit b6bf3b9

File tree

51 files changed

+1561
-1241
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1561
-1241
lines changed
Binary file not shown.
Loading
Binary file not shown.
Loading

apps/dashboard/src/components/shared/ConnectSDKCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export function ConnectSDKCard({
4040
label="Unity SDK"
4141
/>
4242
<DocLink
43-
link="https://portal.thirdweb.com/unreal/getting-started"
43+
link="https://portal.thirdweb.com/unreal-engine/getting-started"
4444
icon={UnrealIcon}
45-
label="Unreal SDK"
45+
label="Unreal Engine SDK"
4646
/>
4747
<DocLink
4848
link="https://portal.thirdweb.com/dotnet/getting-started"

apps/dashboard/src/pages/sdk.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ const Web3SDK: ThirdwebNextPage = () => {
172172
href="/ui-components"
173173
/>
174174
<ProductLearnMoreCard
175-
title="Game Engine SDK"
175+
title="Game Engine SDKs"
176176
category={TRACKING_CATEGORY}
177-
description="Unity SDK includes all supported platforms: Native (Windows, Mac, Linux), Mobile (iOS, Android), Console (PS, Xbox), Browser (WebGL). Unreal SDK coming soon."
177+
description="Unity and Unreal Engine SDKs include all supported platforms: Native (Windows, Mac, Linux), Mobile (iOS, Android), Console (PS, Xbox), Browser (WebGL)."
178178
icon={require("../../public/assets/product-pages/dashboard/hero-icon-3.png")}
179179
href="https://portal.thirdweb.com/unity"
180180
/>

apps/dashboard/src/pages/solutions/gaming.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const SolutionsGaming: ThirdwebNextPage = () => {
248248
TRACKING_CATEGORY={TRACKING_CATEGORY}
249249
href="https://portal.thirdweb.com/solutions/gaming/unreal-engine/quickstart"
250250
linkTitle="Read the Unreal Engine docs"
251-
label="unreal"
251+
label="unreal-engine"
252252
/>
253253
<ImageCard
254254
title="Mobile"
@@ -303,16 +303,16 @@ const SolutionsGaming: ThirdwebNextPage = () => {
303303
</ImageCard>
304304

305305
<ImageCard
306-
title="Play Speed Racer"
307-
image={require("../../../public/assets/solutions-pages/gaming/gaming-speed-racer.png")}
306+
title="Play TappyFowl"
307+
image={require("../../../public/assets/solutions-pages/gaming/gaming-tappyfowl.png")}
308308
TRACKING_CATEGORY={TRACKING_CATEGORY}
309-
href="https://engine-express.thirdweb-preview.com/"
309+
href="https://tappyfowl.thirdweb.com/"
310310
category="Unreal Engine"
311-
linkTitle="Play Speed Racer"
312-
label="speed-racer"
311+
linkTitle="Play TappyFowl"
312+
label="tappyfowl"
313313
>
314-
An Onchain Survival Game. Escape the dungeon by battling
315-
terrifying bosses.
314+
Guide your fowl through a fantastical landscape that requires
315+
quick reflexes and precise timing.
316316
</ImageCard>
317317
</SimpleGrid>
318318
</Flex>
@@ -339,7 +339,7 @@ const SolutionsGaming: ThirdwebNextPage = () => {
339339
>
340340
<SolutionsGamingCard
341341
p={8}
342-
label="unreal"
342+
label="unreal-engine"
343343
href="https://portal.thirdweb.com/gaming"
344344
>
345345
<LandingIconSectionItem

apps/dashboard/src/pages/templates.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,13 @@ export const templates: TemplateCardProps[] = [
139139
authorIcon: "/assets/templates/thirdweb-eth.png",
140140
},
141141
{
142-
id: "unreal_demo",
143-
title: "Speed Racers",
144-
homepage: "https://engine-express.thirdweb-preview.com/",
145-
repo: "https://github.com/thirdweb-example/unreal_demo",
146-
description: "Racing demo game using Unreal and thirdweb Engine.",
147-
img: "/assets/templates/speed-racer.png",
142+
id: "unreal_engine_demo",
143+
title: "TappyFowl",
144+
homepage: "https://tappyfowl.thirdweb.com/",
145+
repo: "https://github.com/thirdweb-example/TappyFowl",
146+
description:
147+
"Flappy Bird inspired demo game using Unreal Engine and thirdweb Engine.",
148+
img: "/assets/templates/tappyfowl.png",
148149
hoverBorderColor: "hsl(248deg 89% 79% / 15%)",
149150
tags: ["Unreal", "Engine", "Gaming"],
150151
authorENS: "thirdweb.eth",

apps/portal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"postextract-search-data": "next-sitemap"
1818
},
1919
"dependencies": {
20-
"@dirtycajunrice/klee": "^1.0.0",
20+
"@dirtycajunrice/klee": "^1.0.1",
2121
"@mdx-js/loader": "^2.3.0",
2222
"@mdx-js/react": "^2.3.0",
2323
"@next/mdx": "^13.5.6",

0 commit comments

Comments
 (0)