Hi,
I just updated Unity and 2D Toolkit and now I have 36 fatal errors :-(
Here's a screenshot. Any ideas how to fix this?
I went from:
Unity 4.1 > 4.3.1f1
2D Toolkit 2.0 > 2.3.0
For example the first error points to the last line of this:
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
[AddComponentMenu("2D Toolkit/Camera/tk2dCamera")]
[ExecuteInEditMode]
/// <summary>
/// Maintains a screen resolution camera.
/// Whole number increments seen through this camera represent one pixel.
/// For example, setting an object to 300, 300 will position it at exactly that pixel position.
/// </summary>
public class tk2dCamera : MonoBehaviour
{
static int CURRENT_VERSION = 1;
public int version = 0;
[SerializeField] private tk2dCameraSettings cameraSettings = new tk2dCameraSettings();