UnityEngine.Handheld.PlayFullScreenMovie C# (CSharp) Method

PlayFullScreenMovie() public static method

Plays a full-screen movie.

public static PlayFullScreenMovie ( string path, [ bgColor, [ controlMode, [ scalingMode ) : bool
path string Filesystem path to the movie file.
bgColor [ Background color.
controlMode [ How the playback controls are to be displayed.
scalingMode [ How the movie is to be scaled to fit the screen.
return bool
        public static bool PlayFullScreenMovie(string path, [DefaultValue("Color.black")] Color bgColor, [DefaultValue("FullScreenMovieControlMode.Full")] FullScreenMovieControlMode controlMode, [DefaultValue("FullScreenMovieScalingMode.AspectFit")] FullScreenMovieScalingMode scalingMode)
        {
            return INTERNAL_CALL_PlayFullScreenMovie(path, ref bgColor, controlMode, scalingMode);
        }

Same methods

Handheld::PlayFullScreenMovie ( string path ) : bool
Handheld::PlayFullScreenMovie ( string path, Color bgColor ) : bool
Handheld::PlayFullScreenMovie ( string path, Color bgColor, FullScreenMovieControlMode controlMode ) : bool