My program doesn't have bugs. It just develops random features.

UE3:TextureMovie (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site

Jump to: navigation, search
UT3 Object >> Surface >> Texture >> TextureMovie

Contents

Package: 
Engine
This class in other games:
UDK

TextureMovie Movie texture support base class.

Copyright 1998-2007 Epic Games, Inc. All Rights Reserved.

[edit] Properties

[edit] Property group 'TextureMovie'

[edit] AddressX

Type: Texture.TextureAddress

The addressing mode to use for the X axis.

[edit] AddressY

Type: Texture.TextureAddress

The addressing mode to use for the Y axis.

[edit] AutoPlay

Type: bool

Whether the movie should automatically start playing when it is loaded.

Default value: True

[edit] Looping

Type: bool

Whether the movie should loop when it reaches the end.

Default value: True

[edit] MovieStreamSource

Type: EMovieStreamSource

Select streaming movie from memory or from file for playback

[edit] Internal variables

[edit] Data

Type: Object.UntypedBulkData_Mirror{FByteBulkData}

Modifiers: native, const

Raw compressed data as imported.

[edit] Decoder

Type: CodecMovie

Modifiers: const, transient

Instance of decoder.

[edit] DecoderClass

Type: class<CodecMovie>

Modifiers: const

Class type of Decoder that will be used to decode Data.

Default value: Class'Engine.CodecMovieFallback'

[edit] Format

Type: Texture.EPixelFormat

Modifiers: const

The format of the texture data.

[edit] Paused

Type: bool

Modifiers: const

Whether the movie is currently paused.

[edit] ReleaseCodecFence

Type: pointer{FRenderCommandFence}

Modifiers: native, const, transient

Set in order to synchronize codec access to this movie texture resource from the render thread

[edit] SizeX

Type: int

Modifiers: const

The width of the texture.

[edit] SizeY

Type: int

Modifiers: const

The height of the texture.

[edit] Stopped

Type: bool

Modifiers: const

Whether the movie is currently stopped.

Default value: True

[edit] Default values

Property Value
NeverStream True

[edit] Enums

[edit] EMovieStreamSource

Select streaming movie from memory or from file for playback

MovieStream_File 
stream directly from file
MovieStream_Memory 
load movie contents to memory

[edit] Native functions

[edit] Pause

native function Pause ()

Pauses the movie.

[edit] Play

native function Play ()

Plays the movie and also unpauses.

[edit] Stop

native function Stop ()

Stops movie playback.