You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialization reads both application and system config files.
This feature can be used to add functionality to app through config files, such as Camera control modules etc. This system is better than adding module initialization to default_init since that script is only executed for applications launched through orun
The text was updated successfully, but these errors were encountered:
In config files, add possibility of initializing engine modules as such:
config file
This will call python
_stereoSwitcher = CameraStereoSwitcher.create("stereoSwitcher")
create
call can use the passed string as the module name, and to lookup configsettings for the module. The
_
in front of the module object variable is to assure it does not get destroyed on runtime cleanups (see https://github.com/uic-evl/omegalib/blob/master/src/omega/PythonInterpreter.cpp#L450)Initialization reads both application and system config files.
This feature can be used to add functionality to app through config files, such as Camera control modules etc. This system is better than adding module initialization to default_init since that script is only executed for applications launched through
orun
The text was updated successfully, but these errors were encountered: