Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripting/demos.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { Demos } from '/snippets/demos.jsx'

<Demos
examples={[
"scriptingLists",
"scriptingPlinko",
"scriptingSlotMachine",
"scriptingSnakeGame",
Expand Down
12 changes: 10 additions & 2 deletions snippets/demos.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export const Demos = ({
scriptingDrawImages: {
title: "Render an Image with Scripting",
image: "https://static.rive.app/docs/render-image-with-scripting.jpg",
description: "Draw an image, give it transforms, and control its mesh all through scripting.",
description: "Draw an image, give it transforms, control its mesh, and add clipping all through scripting.",
links: {
editor: "https://rive.app/community/files/26406-49444-draw-an-image-with-scripting/"
}
Expand All @@ -248,13 +248,21 @@ export const Demos = ({
editor: "https://rive.app/community/files/25759-slot-machine-game-with-scripting/"
}
},
scriptingLists: {
title: "Scripting Lists",
image: "/images/runtimes/rive-db-lists.webp",
description: "Add, remove, edit, and swap items in your data binding list using Rive scripting.",
links: {
editor: "https://rive.app/community/files/27098-51051-scripting-lists"
}
},
scriptingPlinko: {
title: "Plinko - Complete Game",
image: "https://static.rive.app/docs/scripting-plinko-game.png",
description: "Build a complete Plinko game using Layout, Node, and Path Effect scripts.",
links: {
editor: "https://rive.app/marketplace/25772-blinko-scripted-game/"
}
},
}
}

Expand Down