Scaleform.SFMovieCreationParams.SFMovieCreationParams C# (CSharp) Method

SFMovieCreationParams() public method

public SFMovieCreationParams ( String name, int ox, int oy, int width, int height, IntPtr pdata, int length, bool initFirstFrame, Color32 bgColor, bool useBackgroundColor = false, ScaleModeType scaleModeType = ScaleModeType.SM_ShowAll, bool bautoManageVP = true ) : UnityEngine
name String
ox int
oy int
width int
height int
pdata System.IntPtr
length int
initFirstFrame bool
bgColor UnityEngine.Color32
useBackgroundColor bool
scaleModeType ScaleModeType
bautoManageVP bool
return UnityEngine
    public SFMovieCreationParams(String name, int ox, int oy, int width, int height,
        IntPtr pdata, int length, bool initFirstFrame, Color32 bgColor, bool useBackgroundColor = false,
        ScaleModeType scaleModeType = ScaleModeType.SM_ShowAll, bool bautoManageVP = true)
    {
		MovieName = name;
		OX = ox;
		OY = oy;
		Width = width;
		Height = height;
		IsInitFirstFrame = initFirstFrame;
		IsAutoManageViewport = bautoManageVP;
		pData = pdata;
		Length = length;
		TheScaleModeType = scaleModeType;
		IsUseBackgroundColor = useBackgroundColor;
		IsRenderToTexture = false;
		TextureId = 0;
		TexWidth = 0;
		TexHeight = 0;
		Red = bgColor.r;
		Green = bgColor.g;
		Blue = bgColor.b;
		Alpha = bgColor.a;
		IsMemoryFile = (pdata != IntPtr.Zero);
		Sentinal = SFSentinal.Sentinal;
		IsPad0 = IsPad1 = IsPad2 = false;
    }

Same methods

SFMovieCreationParams::SFMovieCreationParams ( String name, int ox, int oy, int width, int height, IntPtr pdata, int length, bool initFirstFrame, RenderTexture texture, Color32 bgColor, bool useBackgroundColor = false, ScaleModeType scaleModeType = ScaleModeType.SM_ShowAll, bool bAutoManageVP = true ) : UnityEngine
SFMovieCreationParams