I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

UE2:CameraTextureClient (U2)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 08:37, 20 March 2010 by Wormbo (Talk | contribs) (same as UT2004 version)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
U2 Object >> Actor >> Info >> CameraTextureClient
Package: 
Legend
This class in other games:
UE2Runtime, UT2003, UT2004

The CameraTextureClient acts as bridge between a camera actor and a ScriptedTexture that is used to display what the camera sees. You only need one CameraTextureClient per camera as you can reuse the ScriptedTexture on multiple surfaces. Especially when using multiple cameras, it might be a good idea to create a ScriptedTexture in myLevel for each of the cameras.

Properties[edit]

Property group 'CameraTextureClient'[edit]

CameraTag[edit]

Type: name

Match the Tag of the camera actor with this property.

DestTexture[edit]

Type: ScriptedTexture

Set this to the desired ScriptedTexture that will display the camera view. Make sure this texture is not used by any other CameraTextureClient or similar actors.

FOV[edit]

Type: float

The camera's FOV.

Default value: 60.0

RefreshRate[edit]

Type: float

How often per second the ScriptedTexture should be updated with the current camera view.

Default value: 60.0

Internal variables[edit]

CameraActor[edit]

Type: Actor

The actor used as camera.

Default values[edit]

Property Value
bAlwaysRelevant True
bNoDelete True

Events[edit]

PostBeginPlay[edit]

simulated event PostBeginPlay ()

Overrides: Actor.PostBeginPlay

Finds the camera actor, registers the CameraTextureClient to the DestTexture and sets up the update timer according to the RefreshRate.

RenderTexture[edit]

simulated event RenderTexture (ScriptedTexture Tex)

Overrides: Actor.RenderTexture

Draws the current camera view onto the DestTexture via ScriptedTexture.DrawPortal().

Timer[edit]

simulated event Timer ()

Overrides: Actor.Timer

Forces the ScriptedTexture to be updated the next time it is rendered.