Jump to content

Search the Community

Showing results for tags 'WidgetVBox'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to UNIGINE Forums
    • News & Announcements
    • Getting started
  • Development
    • Content Creation
    • World Design
    • Rendering
    • Animation
    • Physics, Navigation and Path Finding
    • UI Systems
    • Sound & Video
    • Editor
    • C++ Programming
    • C# Programming
    • Networking
    • Sim IG (Image Generator)
    • VR Discussions
    • General
  • Improving UNIGINE
    • Documentation
    • Feedback for UNIGINE team
    • Bug Reports
    • Unigine SDK Beta feedback
  • Community
    • Add-on Store (https://store.unigine.com/)
    • Showcase
    • Collaboration
    • Tools, Plugins, Materials & Tutorials
    • General Discussions
  • Legacy
    • UnigineScript

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 3 results

  1. 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() { } };
  2. 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?
  3. Здравствуйте. Не знаю баг это или нет, но работает как-то подозрительно. Например у нас есть интерфейс на котором десятки таких кнопок, и теперь если этот интерфейс перекрыть другим окном без подобных кнопок, информационное какое-нибудь, то при клике на это информационное окно (например для перетаскивания) все равно попадаем в интерфейс. Это отлично видно во вложенном видео на вашем же примере. ===================== 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
×
×
  • Create New...