1
2
3
4
5
6
7
8
9from pyfbsdk import FBSystem, FBComponent
10
12
13
14
15
16
17lList = [ lTexture for lTexture in lSystem.Scene.Textures if (len( lTexture.Parents ) == 1 and lTexture.Parents[0].Name=="Scene") ]
18list( map( FBComponent.FBDelete, lList ) )
19
20
21lList = [ lMedia for lMedia in lSystem.Scene.VideoClips if (len( lMedia.Parents ) == 1 and lMedia.Parents[0].Name=="Scene") ]
22list( map( FBComponent.FBDelete, lList ) )
23
24
25
26
27
28if dir().__contains__( 'lTexture' ): del( lTexture )
29if dir().__contains__( 'lMedia' ): del( lMedia )
30
31
32del( lSystem, lList )
33
34
35del( FBSystem, FBComponent )
Provides access to the underlying system, and the MotionBuilder scene.
Definition: pyfbsdk_generated.h:18771
Python built-in list container class.
Definition: pyfbsdk.h:65