Hello all,
I downloaded the spine example for 2dtoolkit and started playing around with it. Unfortunately I have spent the last four hours trying to rotate the spine boy head. For some reason nothing happens, it runs and I get the following error:
NullReferenceException: Object reference not set to an instance of an object
tk2dSpineboy.Start () (at Assets/spine-tk2d/Example/Scripts/tk2dSpineboy.cs:24)
here is the .cs file
using UnityEngine;
using System.Collections;
using Spine;
/*
*/
public class tk2dSpineboy : MonoBehaviour {
/*
*/
private tk2dSpineSkeleton skeleton;
public Bone head;
/*
*/
void Start() {
skeleton = GetComponent<tk2dSpineSkeleton>();
skeleton.animationName = "walk";
skeleton.loop = false;
head = skeleton.skeleton.FindBone("head");
head.Rotation=120.0f;
if(head!=null){
Debug.Log("not null");
}
if(head==null){
Debug.Log("its null");
}
}
/*
*/
void Update() {
return;
if(skeleton.loop) return;
if(skeleton.state.Time >= skeleton.state.Animation.Duration - 0.25) {
skeleton.animationName = "walk";
skeleton.loop = true;
}
}
/*
*/
void OnMouseDown() {
skeleton.animationName = "jump";
skeleton.loop = false;
}
}
What else is strange about this is that neither of the log statements are called ( null or not). I am working off of the example found here https://github.com/EsotericSoftware/spine-workshop/blob/master/src/com/esotericsoftware/spine/workshop/H_AnimationProcedural.java.
If anyone could offer any advice I would be appreciative1000000.