Re: Easy 3D light bulb positioning
Code: Select all
if (ignoreWindowPanes
&& shapeName != null
&& shapeName.startsWith(ModelManager.WINDOW_PANE_SHAPE_PREFIX)
&& isDoorOrWindowChild(shape)) {
return;
}
Code: Select all
if (shapeName != null
&& ((ignoreWindowPanes
&& shapeName.startsWith(ModelManager.WINDOW_PANE_SHAPE_PREFIX)
&& isDoorOrWindowChild(shape))
|| shapeName.startsWith("sweethome3d_light"))) {
return;
}