Liberi
An exergame built for kids with CP!
Cameraman Class Reference

Standard cameraman for the game. More...

Inherits MonoBehaviour.

Public Member Functions

void Follow (GameObject go)
 Make this cameraman follow the given object. More...
 
void Follow (Component component)
 Make this cameraman follow the given object. More...
 
void StopFollowing ()
 Stop following the target. More...
 
void SnapToTarget ()
 Bring the camera to the desired position immediately without smooth following. More...
 
void Shake (float scale, float duration)
 Shake the camera. More...
 
void StopShaking ()
 Stop shaking the camera. More...
 

Public Attributes

const float ShakeShiftInterval = .01f
 Frequency of camera shakes. More...
 
Vector3 DefaultTargetOffset = new Vector3(0, 0, -8f)
 The default desired offset from the target object to follow. More...
 
float DefaultNoFollowRadius
 The default allowed distance between the target and the camera before following behaviour is triggered. More...
 
float DefaultFollowFactor = 5f
 The default "strength" of the following behaviour. Use higher values for quicker response. Use lower values for smoother movement. More...
 
Vector3 AdditionalOffset = Vector3.zero
 An optional additional offset. More...
 
Color DesiredSceneColor
 The desired fog and background color of the scene. The camera will always try to correct to this desired color. More...
 
float ColorCorrectionFactor
 Effects the speed at which the camera's color corrects to the desired color. More...
 

Properties

static Cameraman Instance [get]
 
GameObject Target [get, set]
 Gets or sets the target for this cameraman to follow. More...
 
Color DefaultSceneColor [get]
 The default scene color, set at startup to the background color of the camera. More...
 

Detailed Description

Standard cameraman for the game.

Definition at line 12 of file Cameraman.cs.

Member Function Documentation

void Cameraman.Follow ( GameObject  go)
inline

Make this cameraman follow the given object.

Definition at line 101 of file Cameraman.cs.

void Cameraman.Follow ( Component  component)
inline

Make this cameraman follow the given object.

Definition at line 137 of file Cameraman.cs.

void Cameraman.Shake ( float  scale,
float  duration 
)
inline

Shake the camera.

Parameters
scaleHow strong the shake is.
durationHow long the shake will last.

Definition at line 170 of file Cameraman.cs.

void Cameraman.SnapToTarget ( )
inline

Bring the camera to the desired position immediately without smooth following.

Definition at line 159 of file Cameraman.cs.

void Cameraman.StopFollowing ( )
inline

Stop following the target.

Definition at line 145 of file Cameraman.cs.

void Cameraman.StopShaking ( )
inline

Stop shaking the camera.

Definition at line 194 of file Cameraman.cs.

Member Data Documentation

Vector3 Cameraman.AdditionalOffset = Vector3.zero

An optional additional offset.

Definition at line 56 of file Cameraman.cs.

float Cameraman.ColorCorrectionFactor

Effects the speed at which the camera's color corrects to the desired color.

Definition at line 65 of file Cameraman.cs.

float Cameraman.DefaultFollowFactor = 5f

The default "strength" of the following behaviour. Use higher values for quicker response. Use lower values for smoother movement.

Definition at line 51 of file Cameraman.cs.

float Cameraman.DefaultNoFollowRadius

The default allowed distance between the target and the camera before following behaviour is triggered.

Definition at line 46 of file Cameraman.cs.

Vector3 Cameraman.DefaultTargetOffset = new Vector3(0, 0, -8f)

The default desired offset from the target object to follow.

Definition at line 42 of file Cameraman.cs.

Color Cameraman.DesiredSceneColor

The desired fog and background color of the scene. The camera will always try to correct to this desired color.

Definition at line 61 of file Cameraman.cs.

const float Cameraman.ShakeShiftInterval = .01f

Frequency of camera shakes.

Definition at line 17 of file Cameraman.cs.

Property Documentation

Color Cameraman.DefaultSceneColor
get

The default scene color, set at startup to the background color of the camera.

Definition at line 69 of file Cameraman.cs.

GameObject Cameraman.Target
getset

Gets or sets the target for this cameraman to follow.

Definition at line 28 of file Cameraman.cs.


The documentation for this class was generated from the following file: