-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor!: possible changes to be made #1
base: main
Are you sure you want to change the base?
Conversation
684976e
to
408455b
Compare
var mixingType = animationState.getMixingTransform(this.name); | ||
var mixingType = animationState.getMixingTransform(name); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reverts 8dcc9b1
this.scaleMode = 1; | ||
this.fixedRotation = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverts 8b85a71
for (var index in this._animationDataList) { | ||
if (!this._animationDataList.hasOwnProperty(index)) continue; | ||
for (var index=0; index < this._animationDataList.length; index++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These hasOwnProperty
checks were added in cfaaa8b
This compares the 2.4.1-derived code with some patches that were floating around internally.