Search the Community
Showing results for tags 'WidgetVBox'.
-
Hi, everyone! I can not set a color of my WidgetVBox object so that when I do it, rung object doesn't get the color. class Rung : Unigine::Widgets::Canvas ... class Workspace : Unigine::Widgets::Widget { Rung rung; Unigine::Widgets::VBox box; Workspace() { box = new Unigine::Widgets::VBox(); widget = box.widget; // Добавляем rung в workspace rung = new Rung(); widget.addChild(rung.widget, GUI_ALIGN_TOP | GUI_ALIGN_LEFT); this.setHeight(600); this.setWidth(800); box.setBackground(1); box.setColor(vec4(0, 0.98, 0.98, 1)); } ~Workspace() { } };
-
Can I add a child WidgetVBox to a parent Unigine::Widgets::VBox? Example: Gui gui = engine.getGui(); WidgetVBox childVB = new WidgetVBox(gui); Unigine::Widgets::VBox parentVB = new Unigine::Widgets::VBox(); parentVB.addChild(childVB); // Error: Machine::do_callucfv(): "WidgetVBox 02e4f920 internal (12:21:21)" is not a user class If so, how?
- 2 replies
-
- Widget
- WidgetVBox
-
(and 4 more)
Tagged with:
-
Здравствуйте. Не знаю баг это или нет, но работает как-то подозрительно. Например у нас есть интерфейс на котором десятки таких кнопок, и теперь если этот интерфейс перекрыть другим окном без подобных кнопок, информационное какое-нибудь, то при клике на это информационное окно (например для перетаскивания) все равно попадаем в интерфейс. Это отлично видно во вложенном видео на вашем же примере. ===================== translation from google ===================== Hello I do not know this is a bug or not, but it works somehow suspicious. For example we have an interface in which dozens of buttons, and now if the interface block another window without these buttons, some information, then when you click on this window (example for drag and drop) will still get into the interface. This is clearly seen in the attached video to your same example. Thank you. WidgetVBox.zip