История изменений
Исправление rumgot, (текущая версия) :
If you need to trigger a repaint from places other than paintGL() (a typical example is when using timers to animate scenes), you should call the widget’s update() function to schedule an update.
Ты делаешь это?
Смысл в том, что твоя сцена не перерисовывается. Нужно запускать перерисовку самому через вызов метода update()
твоего виджета (например по таймеру).
Исправление rumgot, :
https://doc.qt.io/qt-5/qopenglwidget.html If you need to trigger a repaint from places other than paintGL() (a typical example is when using timers to animate scenes), you should call the widget’s update() function to schedule an update.
Ты делаешь это?
Смысл в том, что твоя сцена не перерисовывается. Нужно запускать перерисовку самому через вызов метода update()
твоего виджета (например по таймеру).
Исходная версия rumgot, :
https://doc.qt.io/qt-5/qopenglwidget.html If you need to trigger a repaint from places other than paintGL() (a typical example is when using timers to animate scenes), you should call the widget’s update() function to schedule an update.
Ты делаешь это?