config property

SceneConfig config

The SceneConfig instance associated with this SceneController.

Implementation

SceneConfig get config {
  return _config;
}
void config=(SceneConfig sceneConfig)

Implementation

set config(SceneConfig sceneConfig) {
  _config.rebuildOnHotReload = sceneConfig.rebuildOnHotReload;
  _config.autoUpdateRender = sceneConfig.autoUpdateRender;
  _config.isPersistent = sceneConfig.isPersistent;
  _config.painterWillChange = sceneConfig.painterWillChange;
  _config.useKeyboard = sceneConfig.useKeyboard;
  _config.usePointer = sceneConfig.usePointer;
  _config.useTicker = sceneConfig.useTicker;
}