Liberi
An exergame built for kids with CP!
CameraTarget.cs
1 using UnityEngine;
2 using System;
3 using System.Linq;
4 using System.Collections.Generic;
5 using Janus;
6 
10 [AddComponentMenu("Liberi/Camera Target")]
11 [Script(ScriptRole.OwnerView)]
12 public class CameraTarget: MonoBehaviour
13 {
17  public Vector3 CameramanOffset = new Vector3(0, 0, -8f);
21  public float NoFollowRadius;
26  public float FollowFactor = 5f;
27 
28  void OnSpawn ()
29  {
30  if (tag == "Avatar" && Cameraman.Instance != null)
31  {
32  Cameraman.Instance.Follow(this);
33  Cameraman.Instance.SnapToTarget();
34  }
35  }
36 }
Vector3 CameramanOffset
The desired offset from this object to the cameraman.
Definition: CameraTarget.cs:17
float NoFollowRadius
The allowed distance between this object and the camera before following behaviour is triggered...
Definition: CameraTarget.cs:21
void SnapToTarget()
Bring the camera to the desired position immediately without smooth following.
Definition: Cameraman.cs:159
float FollowFactor
The "strength" of the following behaviour. Use higher values for quicker response. Use lower values for smoother movement.
Definition: CameraTarget.cs:26
Camera target class which marks this object to be followed by the cameraman.
Definition: CameraTarget.cs:12
void Follow(GameObject go)
Make this cameraman follow the given object.
Definition: Cameraman.cs:101
Standard cameraman for the game.
Definition: Cameraman.cs:12