Hi, I have problem
1. I load tileset `Tileset with discrete LODs` from https://github.com/AnalyticalGraphicsInc/3d-tiles-samples/tree/master/tilesets/TilesetWithDiscreteLOD
and I want to change color of dragon.
I declare styles
var defaultStyle = new Cesium.Cesium3DTileStyle({
  color : "color('red')",
  show : true
});
and add styles to tileset
tileset.style = defaultStyle;
and this didn't work :(.
However when I load `New York` tileset, the same code works. Someone can me explain it?
Demo NY in cesium https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/index.html?src=3D%20Tiles%20Feature%20Picking.html&label=Showcases
cesium version: "1.38.0"