Load a scene at startup
Discuss this topic at Factory I/O Community Forum
A scene can be loaded at startup by either:
- Placing a load command in the auto.cfg configuration file:
scene.load_from_path(r'<path-to-scene>')
- Using the command-line with the load parameter:
Factory IO.exe "load:<path-to-scene>"
Factory I/O can also start the scene immediately in run mode by:
- Setting scene.start_in_run_mode in the auto.cfg configuration file:
scene.load_from_path(r'<path-to-scene>')
scene.start_in_run_mode = True
- Using the command-line with the run parameter:
Factory IO.exe "load:<path-to-scene>" run