mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-09 00:30:12 +08:00
Merge remote-tracking branch 'EsotericSoftware/3.6' into 3.6
This commit is contained in:
commit
90f0ccd967
Binary file not shown.
@ -46,7 +46,7 @@ package spine.animation {
|
||||
public var eventThreshold : Number, attachmentThreshold : Number, drawOrderThreshold : Number;
|
||||
public var animationStart : Number, animationEnd : Number, animationLast : Number, nextAnimationLast : Number;
|
||||
public var delay : Number, trackTime : Number, trackLast : Number, nextTrackLast : Number, trackEnd : Number, timeScale : Number;
|
||||
public var alpha : Number, mixTime : Number, mixDuration : Number, interruptAlpha : Number, totalAlpha : Number;
|
||||
public var alpha : Number, mixTime : Number, mixDuration : Number, interruptAlpha : Number, totalAlpha : Number = 0;
|
||||
public var timelineData : Vector.<int> = new Vector.<int>();
|
||||
public var timelineDipMix : Vector.<TrackEntry> = new Vector.<TrackEntry>();
|
||||
public var timelinesRotation : Vector.<Number> = new Vector.<Number>();
|
||||
@ -97,12 +97,13 @@ package spine.animation {
|
||||
for (var i : int = 0; i < timelinesCount; i++) {
|
||||
var intId : int = timelines[i].getPropertyId();
|
||||
var id : String = intId.toString();
|
||||
if (!(propertyIDs[id] == false)) {
|
||||
propertyIDs[id] = true;
|
||||
var contained: Object = propertyIDs[id];
|
||||
propertyIDs[id] = true;
|
||||
if (contained != undefined) {
|
||||
timelineData[i] = AnimationState.SUBSEQUENT;
|
||||
} else if (to == null || !to.hasTimeline(intId))
|
||||
} else if (to == null || !to.hasTimeline(intId)) {
|
||||
timelineData[i] = AnimationState.FIRST;
|
||||
else {
|
||||
} else {
|
||||
for (var ii : int = mixingToLast; ii >= 0; ii--) {
|
||||
var entry : TrackEntry = mixingTo[ii];
|
||||
if (!entry.hasTimeline(intId)) {
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user