question on loading model into cesium sandcastle

1. A concise explanation of the problem you're experiencing.

I'm playing around with one of cesiums online code example (3D Models) and I want to load my own model in instead of the model that they are using.

2. A minimal code example. If you've found a bug, this helps us reproduce and repair it.

var options = [{
    text : 'Aircraft',
    onselect : function() {
        createModel('../../../../Apps/SampleData/models/CesiumAir/Cesium_Air.glb', 5000.0);
    }

for the part where we createModel(), is it possible for me to input my own image somehow?

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.

4. The Cesium version you're using, your operating system and browser.

Hi Jen,

You’ll need to host your model on a web server somewhere, then replace that path with your model’s url. Cesium include a very simple development server you can use. Follow the Cesium Getting Started tutorial for how to set that up.

Thanks!

Gabby