Does ol-cesium support to add conditions in Cesium3DTileStyle?

In my case, I set building’s height less than 50 which to be red, but it’s not work. Beside, it doesn’ t rendering any building and any error in console.
Does anyone know how do I solve this situation?

const scene = ol3d.getCesiumScene()
scene.primitives.add(Cesium.createOsmBuildings({
   style: new Cesium.Cesium3DTileStyle({
     color : {
       conditions : [
         ['${Height} >= 50', 'color("red")'],
         ['true', 'color("white")']
       ]
     },
   })
 }))

I don’t think the ${Height} property is available in the OSM Buildings tileset. Instead try ${feature['cesium#estimatedHeight']}.

Thank you! It was solved. :slight_smile: