| 868 | app::ModuleLightWidget* light; |
| 869 | |
| 870 | LightButton() { |
| 871 | light = new TLight; |
| 872 | // Move center of light to center of box |
| 873 | light->box.pos = this->box.size.div(2).minus(light->box.size.div(2)); |
| 874 | this->addChild(light); |
| 875 | } |
| 876 | |
| 877 | app::ModuleLightWidget* getLight() { |
| 878 | return light; |