What is Playground?
Last updated
Was this helpful?
Last updated
Was this helpful?
Playground is an online editor that you can write your code and view the results. You can edit your code on the left hand side and see the result on the right. You can find more examples by clicking examples button on the top right menu and searching for concepts.
Few things to note:
Experimenting and changing any code in the playground and clicking on the Run button will run your code. Running the code will not affect any original code in the playground you are currently using. Original code can be restored by refreshing the browser.
You need to save your changes to create a new version of the the code in Playground. That way, you can share the link with anyone.
Title and Version: As stated.
Language: Typescript/JavaScript switch.
Theme: Choose the theme for the playground
Font size: Set the font size in the editor.
Safe Mode: When the checkbox is ticked the playground issues a "leaving the page?" confirmation warning when you try to unload/reload a freshly-edited, un-saved scene.
Editor: The checkbox hides or un-hides the editor portion of the playground.
Full Screen: Makes the render area full screen.
Editor Full Screen: Makes the editor area full screen.
Format Code: Pretty prints the code.
Minimap: Display the minimap of the code editor.
Inspector: The checkbox toggles the playground scene inspector which shows a multitude of variable values.
Metadata: This is where you describe your playground allowing yourself and other to search the playground database for examples of use.
Menu : Contains Run, New, Clear, Save and Zip as submenus.
Code : Bottom Left Corner - switch to Code View and Editor.
Scene : Bottom Right Corner - switch to Scene View.
Run : Commands the playground to try to render your scene.
Save : Causes your scene to be permanently stored in the playground's database and it will issue a unique URL for each save. On save you will be asked to complete the metadata so that it can be searched for. Once saved it is a good idea to bookmark the page so you can return to it later. You could then share the URL with others, for example, if it is not working as you expect you can ask a question in the forum along with the link to your playground.
Download : Allows you to download a zip file named sample.zip. Once downloaded and unzipped, you will see a file named index.html
which contains everything necessary to run the code in your browser, including links to external babylon.js and other files.
New : Places a basic createScene()
function into the editor along with code to initialise the scene variable and provide a camera.
Clear : Empties all the code out of the playground editor. You could then paste in any createScene function you are working on locally.
Settings : The Settings button has a sub menu with extra options
Version : Allows and shows your choice of the BABYLON.js framework, either the current stable one or the latest preview version.
Examples : A drop down menu giving examples of playgrounds with a search filter.