• Unity
  • Weird BoneFollower/BoundingBoxFollower error?

  • 編集済み
Related Discussions
...

After adding a BoundingBoxFollower, the first time I click on it in the hierarchy this error appears:

HTTPS をサポートしていないため、画像は非表示になっています。 | まだ表示する

After the error, the BoundingBoxFollower works as intended. If I don't click on it and get the error, the bounding box wont respond to collision detects and so forth. The issue is that I want to add one at runtime. When adding one at runtime, the same thing happens, it works after I select it once in the hierarchy and get the error.

It's just the inspector throwing exceptions though. That's weird.

Will take a look at it.


05 Apr 2016 12:52 am


Well, your line numbers don't make sense. It's probably before this got moved into the namespace.

But I do assume the null reference is this line: https://github.com/EsotericSoftware/spine-runtimes/blob/master/spine-unity/Assets/spine-unity/Editor/BoneFollowerInspector.cs#L51

In which case, it should be a null check before that.

I'll push a fix in a bit, but you should be able to take care of that specifically on your end for now.

As for it not working until you selected it, if you create a BoneFollower at runtime, make sure you set the fields yourself.
What it was doing was filling in the fields when you selected it.

Hi thanks for the quick response.

I set the skeletonRenderer field at runtime and it works now c:

Good to hear! :yes: