Hi and thanks for a quick reply. Yeah, I am using Spine v3.7.19 at the moment. I did as you recommended. Got several errors looking much like this:
Assets/Scripts/EchoPlatformerController.cs(38,41): error CS0246: The type or namespace name BasicPlatformerController' could not be found. Are you missing
Spine.Unity.Examples' using directive?
and
Assets/Scripts/Intro.cs(9,12): error CS0246: The type or namespace name ConstrainedCamera' could not be found. Are you missing
Spine.Unity.Examples' using directive?
In BasicPlatformerController.cs I found those lines:
using UnityEngine;
using Spine.Unity;
namespace Spine.Unity.Examples {
[RequireComponent(typeof(CharacterController))]
public class BasicPlatformerController : MonoBehaviour {
In ConstrainedCamera.cs I found those:
using UnityEngine;
namespace Spine.Unity.Examples {
public class ConstrainedCamera : MonoBehaviour {
Maybe this is basic knowledge, I am not a programmer, but trying to learn(:
Cheers!