-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show/hide Entity causes material update problem #2909
Comments
Still a problem in 1.16 Updated sandcastle example: var viewer = new Cesium.Viewer('cesiumContainer');
var entity = new Cesium.Entity({
polygon : {
hierarchy : new Cesium.PolygonHierarchy(Cesium.Cartesian3.fromDegreesArray([-107.0, 27.0,
-107.0, 22.0,
-102.0, 23.0,
-97.0, 21.0,
-97.0, 25.0])),
outline : true,
outlineColor : Cesium.Color.WHITE,
outlineWidth : 4
}
});
viewer.entities.add(entity);
Sandcastle.addToolbarButton('Show/Hide', function() {
entity.show = !entity.show;
});
Sandcastle.addToolbarButton('Blue', function() {
entity.polygon.material = Cesium.Color.BLUE;
});
|
This appears to be fixed |
This is still an issue for polygons that have an extrusion. Tested with 1.35.
|
Thanks for the update @lucas-gedak ! |
Would also like to mention that this is still a problem. I will note that if I go to the console and type |
Does anyone have a suggested work around for this? Furthermore, could this be related to this issue reported here: |
@cmcleese here is a workaround that works for me: entity.polygon.material = Cesium.Color.BLUE;
var removeEvent = viewer.scene.postRender.addEventListener(function() {
entity.polygon.material = Cesium.Color.BLUE;
removeEvent();
}); I don't think this is related to #3061. If you are seeing the crash in #3061 please post sample code in that issue to reproduce it and I'll reopen it. Thanks! |
The following below does not update the polygon material color: var viewer = new Cesium.Viewer('cesiumContainer');
var entity = new Cesium.Entity({
show: true,
polygon : {
hierarchy : new Cesium.PolygonHierarchy(Cesium.Cartesian3.fromDegreesArray([-107.0, 27.0,
-107.0, 22.0,
-102.0, 23.0,
-97.0, 21.0,
-97.0, 25.0])),
extrudedHeight: 50000,
outlineColor : Cesium.Color.WHITE,
}
});
viewer.entities.add(entity);
// timeout 1
setTimeout(function(){
entity.show = false;
},1500);
// timeout 2
setTimeout(function(){
entity.show = true;
entity.polygon.material = Cesium.Color.PINK;
},2500); @hpinkos After using your work around, it does work. // timeout 2
setTimeout(function(){
entity.show = true;
entity.polygon.material = Cesium.Color.PINK;
var removeEvent = viewer.scene.postRender.addEventListener(function() {
entity.polygon.material = Cesium.Color.PINK;
removeEvent();
});
},2500); |
See #5371 for an example with polylines, and a few times this was reported on the forum |
After you hide and then show an entity, the first time you try to update the entity's color it doesn't work. If you try a second time it works. I've attached some code below to demonstrate the issue. First, click the "Hide / Show Polygon" button to hide and then show the polygon. Then click the "Set polygon to blue" button, the first time will not work, the second time will.
The text was updated successfully, but these errors were encountered: