# How to interact with a widget obscured by other actors?

**URL:** https://discourse.vtk.org/t/how-to-interact-with-a-widget-obscured-by-other-actors/14293
**Category:** Web
**Created:** [July 25, 2024, 3:01am UTC](https://discourse.vtk.org/t/how-to-interact-with-a-widget-obscured-by-other-actors/14293 "2024-07-25T03:01:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![snake-head](https://discourse.vtk.org/user_avatar/discourse.vtk.org/snake-head/32/6484_2.png) [@snake-head](https://discourse.vtk.org/u/snake-head)
#### Post date: [July 25, 2024, 3:01am UTC](https://discourse.vtk.org/t/how-to-interact-with-a-widget-obscured-by-other-actors/14293/1 "2024-07-25T03:01:09Z")

</div>

Just like the live example of the [SphereWidget](https://kitware.github.io/vtk-js/examples/SphereWidget.html) provided by the official site, once the widget enters the interior of the cube actor, it can no longer be interacted with. Is there any setting that allows the widget to always be interactable, even when it is obscured?

 ![spherewidget](https://discourse.vtk.org/uploads/default/original/2X/2/2325f345154f7e634d3aa3e9e9790ddd561c360a.jpeg)

---

<div class="post-metadata">

### Author: ![Thibault\_Bruyere](https://discourse.vtk.org/user_avatar/discourse.vtk.org/thibault_bruyere/32/6585_2.png) [@Thibault\_Bruyere](https://discourse.vtk.org/u/Thibault_Bruyere)
#### Post date: [July 25, 2024, 9:06am UTC](https://discourse.vtk.org/t/how-to-interact-with-a-widget-obscured-by-other-actors/14293/2 "2024-07-25T09:06:19Z")

</div>

Hello,  
You can make the actor of the cube unpickable:

```js
actor.setPickable(false);

```
