Merge branch '4.0' into 4.1-beta

This commit is contained in:
Harald Csaszar 2022-03-24 17:53:41 +01:00
commit e52d4977df
3 changed files with 6 additions and 7 deletions

View File

@ -104,15 +104,15 @@ namespace spine {
virtual ~DefaultSpineExtension(); virtual ~DefaultSpineExtension();
protected: protected:
virtual void *_alloc(size_t size, const char *file, int line); virtual void *_alloc(size_t size, const char *file, int line) override;
virtual void *_calloc(size_t size, const char *file, int line); virtual void *_calloc(size_t size, const char *file, int line) override;
virtual void *_realloc(void *ptr, size_t size, const char *file, int line); virtual void *_realloc(void *ptr, size_t size, const char *file, int line) override;
virtual void _free(void *mem, const char *file, int line); virtual void _free(void *mem, const char *file, int line) override;
virtual char *_readFile(const String &path, int *length); virtual char *_readFile(const String &path, int *length) override;
}; };
// This function is to be implemented by engine specific runtimes to provide // This function is to be implemented by engine specific runtimes to provide

View File

@ -58,6 +58,7 @@ You can add a `Spine Animation State Clip` to a `SkeletonAnimation Track` (or `S
- *Event Threshold.* See [TrackEntry.EventThreshold](http://esotericsoftware.com/spine-api-reference#TrackEntry-eventThreshold). - *Event Threshold.* See [TrackEntry.EventThreshold](http://esotericsoftware.com/spine-api-reference#TrackEntry-eventThreshold).
- *Attachment Threshold.* See [TrackEntry.AttachmentThreshold](http://esotericsoftware.com/spine-api-reference#TrackEntry-attachmentThreshold). - *Attachment Threshold.* See [TrackEntry.AttachmentThreshold](http://esotericsoftware.com/spine-api-reference#TrackEntry-attachmentThreshold).
- *Draw Order Threshold.* See [TrackEntry.DrawOrderThreshold](http://esotericsoftware.com/spine-api-reference#TrackEntry-drawOrderThreshold). - *Draw Order Threshold.* See [TrackEntry.DrawOrderThreshold](http://esotericsoftware.com/spine-api-reference#TrackEntry-drawOrderThreshold).
- *Alpha.* See [TrackEntry.Alpha](http://esotericsoftware.com/spine-api-reference#TrackEntry-alpha).
*Ignored Parameters* *Ignored Parameters*
- *Ease Out Duration, Blend Curves*. These parameters are ignored and have no effect. - *Ease Out Duration, Blend Curves*. These parameters are ignored and have no effect.
@ -111,5 +112,3 @@ This track type can be used to flip the skeleton of the target `SkeletonAnimatio
#### Known Issues #### Known Issues
- The Console potentially logs an incorrect and harmless error `DrivenPropertyManager has failed to register property "m_Script" of object "Spine GameObject (spineboy-pro)" with driver "" because the property doesn't exist.`. This is a known issue on Unity's end. See more here: https://forum.unity.com/threads/default-playables-text-switcher-track-error.502903/ - The Console potentially logs an incorrect and harmless error `DrivenPropertyManager has failed to register property "m_Script" of object "Spine GameObject (spineboy-pro)" with driver "" because the property doesn't exist.`. This is a known issue on Unity's end. See more here: https://forum.unity.com/threads/default-playables-text-switcher-track-error.502903/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 50 KiB