5f9e8f979d
cell values and grid lines are displayed. no interaction available yet.
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
/*
|
|
------------------- Code Monkey -------------------
|
|
|
|
Thank you for downloading the Code Monkey Utilities
|
|
I hope you find them useful in your projects
|
|
If you have any questions use the contact form
|
|
Cheers!
|
|
|
|
unitycodemonkey.com
|
|
--------------------------------------------------
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace CodeMonkey.MonoBehaviours {
|
|
|
|
/*
|
|
* Easy set up for CameraFollow, it will follow the transform with zoom
|
|
* */
|
|
public class CameraFollowSetup : MonoBehaviour {
|
|
|
|
[SerializeField] private CameraFollow cameraFollow = null;
|
|
[SerializeField] private Transform followTransform = null;
|
|
[SerializeField] private float zoom = 50f;
|
|
|
|
private void Start() {
|
|
if (followTransform == null) {
|
|
Debug.LogError("followTransform is null! Intended?");
|
|
cameraFollow.Setup(() => Vector3.zero, () => zoom, true, true);
|
|
} else {
|
|
cameraFollow.Setup(() => followTransform.position, () => zoom, true, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
} |