1
2
3
4
5
6
7
8
9
10
11
12from pyfbsdk import *
13
14
15videoOutList =
FBSystem().VideoOutputs
16if(len(videoOutList) > 0):
17 videoOutput = videoOutList[0]
18 videoOutput.Online = True
19
Provides access to the underlying system, and the MotionBuilder scene.
Definition: pyfbsdk_generated.h:18771