Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

Engine.Movie


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
//=============================================================================
// Movie.uc: A movie that plays on a texture
//
// Created by Demiurge Studios 2002
//
// This is a built-in Unreal class and it shouldn't be modified.
//=============================================================================
class Movie extends Texture
	native
	noexport;

// TODO Al: Make this extend UBitmapMaterial, if possible

var const transient int FMovie;
var Object Callbacks;

// native functions.
native final function Open(String MovieFilename);
native final function Close();
native final function Play(bool LoopMovie);
native final function Pause( bool Pause );
native final function bool IsPaused();
native final function StopNow();
native final function StopAtEnd();
native final function bool IsPlaying();
native final function int GetWidth();
native final function int GetHeight();

defaultproperties
{
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fri 13-10-2023 03:17:26.000 - Creation time: Fri 13-10-2023 03:19:05.546 - Created with UnCodeX