title | description | hideInPageNavigation | hideBreadcrumbs |
---|---|---|---|
Explains how the Roblox engine works |
true |
true |
export const sections = [ { title: "The Roblox Engine", description: "More than just a gaming engine—create large-scale, 3D immersive experiences that simulate the real world. The engine comes bundled with the Roblox Studio and Roblox app, allowing you to create once and ship on millions of devices.", content: [ { image: "/assets/accessories/Layered-Clothing-Banner.jpg",
}
],
buttons: [
{ text: "Browse APIs", href: "./tutorials/first-experience/" },
{ text: "Learn about Roblox Studio", href: "./tutorials/first-experience/" }
]
}, { title: "Real world simulation, endless customization", description: "Roblox handles a lot of rendering and physics simulation for you so you can focus on gameplay, design, and whatever else that's important to your experience. However, you can override the behavior of everything that's simulated, giving you the power to build anything you can imagine.", buttons: [], content: [ { title: "Digital matter and meshes", description: "Add desc", image: "/assets/landing/limited-items.png", buttons: [ { text: "Learn more", href: "./tutorials/first-experience/" }, { text: "Learn more", href: "./tutorials/first-experience/" } ] }, { title: "Large-scale worlds", description: "Add desc.", image: "/assets/landing/price-floors.png", buttons: [{ text: "Learn more", href: "./tutorials/first-experience/" }] }, { title: "Customize when necessary", description: "Add desc.", image: "/assets/landing/price-floors.png", buttons: [{ text: "Learn more", href: "./tutorials/first-experience/" }] } ] }, { title: "Create once, run everywhere", description: "We automatically tune and build Roblox for a multitide of devices so all you need to do is focus on creation. ", buttons: [], content: [ { title: "Free creation tools", description: "Roblox Studio is the free tool to use to build experience that run in the engine It's also updated weekly, so you can create and build once", image: "/assets/landing/limited-items.png", buttons: [ { text: "Learn more", href: "./tutorials/first-experience/" }, { text: "Learn more", href: "./tutorials/first-experience/" } ] }, { title: "Updated weekly", description: "We are constantly adding features to the engine, every week.", image: "/assets/landing/price-floors.png", buttons: [{ text: "Learn more", href: "./tutorials/first-experience/" }] }, { title: "Millions of devices", description: "Roblox runs on a lot of devices thanks to advanced streaming techniques and client and server side optimizations.", image: "/assets/landing/price-floors.png", buttons: [{ text: "Learn more", href: "./tutorials/first-experience/" }] }] } ];
{sections.map((section, index) => ( {section.title}{section.description}
{section.buttons && section.buttons.map((button, btnIndex) => ( {button.text} ))} {section.stats && ( {section.stats.map((stat, index) => ( {stat.header} {stat.description} ))} )} {section.content && ( {section.content.map((content, contentIndex) => { const mdValue = 12 / section.content.length; return ({content.description}
{content.links && content.links.map((link, linkIndex) => ( {link.text}))} {content.buttons && content.buttons.map((button, btnIndex) => ( {button.text} ))} ); })} )} ))}