Tasks/SetAllCamerasBackgroundColorFromCurrentCamera.py
9 from pyfbsdk
import FBSystem, FBColor
13 lCurrentCamera = lSystem.Renderer.CurrentCamera
17 for lCamera
in lSystem.Scene.Cameras:
22 lCamera.BackGroundColor =
FBColor( eval( str( lCurrentCamera.BackGroundColor )))
25 del( lSystem, lCurrentCamera, lCamera )
26 del( FBSystem, FBColor )