4 using System.Collections.Generic;
11 [Script(ScriptRole.Client)]
21 get {
return _instance; }
32 return _target.gameObject;
73 Vector3 _targetOffset;
74 float _noFollowRadius;
85 camera.transparencySortMode = TransparencySortMode.Orthographic;
87 foreach (var cam
in GetComponentsInChildren<Camera>())
89 cam.transparencySortMode = TransparencySortMode.Orthographic;
92 _camera = GetComponent<Camera>();
109 bool snap = _target == null;
111 _target = go.transform;
115 if (_camTarget != null)
128 AdditionalOffset = Vector3.zero;
139 Follow(component.gameObject);
153 AdditionalOffset = Vector3.zero;
162 transform.position = _target.position + _targetOffset;
170 public void Shake (
float scale,
float duration)
172 StartCoroutine(ShakeAsync(scale, duration));
175 IEnumerator ShakeAsync (
float scale,
float duration)
177 float shakeTimeLeft = duration;
179 while (shakeTimeLeft > 0f)
181 _shakeVector =
new Vector3(Random.Range(-.5f, .5f), Random.Range(-.5f, .5f), 0f) * scale;
183 yield
return new WaitForSeconds(ShakeShiftInterval);
186 _shakeVector = Vector3.zero;
196 _shakeVector = Vector3.zero;
197 StopCoroutine(
"ShakeAsync");
202 Vector3 newVelocity = Vector3.zero;
206 if (_camTarget != null)
219 Vector3 toTarget = _target.position + _targetOffset + AdditionalOffset - transform.position;
220 float distToTarget = toTarget.magnitude;
222 if (distToTarget != 0f)
224 Vector3 followVector = toTarget / distToTarget * Mathf.Max(0f, distToTarget - _noFollowRadius);
225 newVelocity += followVector * _followFactor;
228 _camera.backgroundColor = Color.Lerp(_camera.backgroundColor, DesiredSceneColor, Time.deltaTime * ColorCorrectionFactor);
229 RenderSettings.fogColor = _camera.backgroundColor;
232 if (_shakeVector != Vector3.zero)
233 newVelocity += _shakeVector;
235 if (newVelocity != Vector3.zero)
236 transform.position += newVelocity * Time.deltaTime;
241 if (_instance ==
this)
float ColorCorrectionFactor
Effects the speed at which the camera's color corrects to the desired color.
const float ShakeShiftInterval
Frequency of camera shakes.
Vector3 CameramanOffset
The desired offset from this object to the cameraman.
Color DefaultSceneColor
The default scene color, set at startup to the background color of the camera.
float NoFollowRadius
The allowed distance between this object and the camera before following behaviour is triggered...
Vector3 AdditionalOffset
An optional additional offset.
void SnapToTarget()
Bring the camera to the desired position immediately without smooth following.
float FollowFactor
The "strength" of the following behaviour. Use higher values for quicker response. Use lower values for smoother movement.
GameObject Target
Gets or sets the target for this cameraman to follow.
Color DesiredSceneColor
The desired fog and background color of the scene. The camera will always try to correct to this desi...
Vector3 DefaultTargetOffset
The default desired offset from the target object to follow.
float DefaultFollowFactor
The default "strength" of the following behaviour. Use higher values for quicker response. Use lower values for smoother movement.
void StopFollowing()
Stop following the target.
Camera target class which marks this object to be followed by the cameraman.
void Follow(GameObject go)
Make this cameraman follow the given object.
void StopShaking()
Stop shaking the camera.
void Follow(Component component)
Make this cameraman follow the given object.
void Shake(float scale, float duration)
Shake the camera.
float DefaultNoFollowRadius
The default allowed distance between the target and the camera before following behaviour is triggere...
Standard cameraman for the game.