C4 Engine Terathon Software C4 Engine API Documentation

• Movies Plugin

API Links
Developer Links

class MovieController

Defined in:  C4MoviePlugin.h
The MovieController class manages a node that has a movie playing into its material.
Definition

class MovieController : public Controller

Member Functions
MovieController::GetMovieName Returns the name of the movie resource.
MovieController::GetMovieFlags Returns the movie flags.
MovieController::SetMovieFlags Sets the movie flags.
Constructor

MovieController(const char *name, unsigned_int32 loadFlags = 0);

Parameters
name The name of the movie resource, including the filename extension.
loadFlags The movie load flags. See below for a list of possible values.
Description
The movie load flags specified by the loadFlags parameter can be any valid combination (through logical OR) of the following values.
kMovieRemoteURL The movie name represents a URL to a remote resource.
kMovieAbsolutePath The movie name represents an absolute path name. The kMovieRemoteURL flag is ignored if this flag is specified.
Base Classes
Controller A MovieController is a specific type of controller.
See Also

Movie