Lesson 1: Hello Orb
Welcome to HoloScript! In this first lesson, you'll create your very first 3D object — an orb.
Concept: Basic composition syntax
An orb is a named 3D composition. The simplest orb looks like this:
holoscript
orb "MyBox" {
color: "blue"
}That's it! Three lines and you have a blue box floating in your scene.
Try it:
holoscript
orb "HelloWorld" {
color: "red"
scale: 1.5
}Your turn:
Change the color to "green" and the scale to 2.0.
[Check Answer] [Hint] [Skip]
Next: Lesson 2 – Properties