-
Notifications
You must be signed in to change notification settings - Fork 31
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
#builder#300 animation group issues #303
#builder#300 animation group issues #303
Conversation
@JiepengTan What is the relationship between these two:
When should spx-user configure |
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.
- The animation
default
(which is bound asdefaultAnimation
) is played only once while sprite in default state. It is expecetd to be played repeatedly (see details in spx: Animation binding builder#603 (comment))- After animation
fight
(played by callinganimate "fight"
) finished playing, the sprite does not return to the default state, while it keeps the last csotume of animationfight
Are these two issues expected to be fixed by this PR? It seems that they are not addressed yet.
spgdi.go
Outdated
if dirDeg > 180 { | ||
dirDeg -= 360 | ||
} | ||
if dirDeg < -45 || dirDeg > 135 { |
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.
Seems this change occurs for #301
While as discussed, we should adopt the same logic as Scratch, which is
heading: [0, 180]
is considered facing rightheading: (-180, 0)
is considered facing left
I think we should compare dirDeg
with 0
, instead of -45
, 135
here?
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.
Seems this change occurs for #301
While as discussed, we should adopt the same logic as Scratch, which is
heading: [0, 180]
is considered facing rightheading: (-180, 0)
is considered facing leftI think we should compare
dirDeg
with0
, instead of-45
,135
here?
It was fixed in the latest commit. 885578c
This design is for compatibility with old projects, although it is not very elegant. If you need the old behavior (only action, no animation playing), you do not need to configure frameFrom, frameTo , frameFps & anitype. If configured, it will play an additional animation on top of the previous behavior: The purpose of fps is to adapt to: loop animations, such as step animations, fps can control the speed of animation playback. |
heading: [0, 180] is considered facing right heading: (-180, 0) is considered facing left
2. when any other animation (excluding 'die') stops, the default animation should commence.
…properties, which is equivalent to configuring 'To' and 'From'.
fixed : #300
default_anim_bug.mp4default.mp4 |
…using the variables StepDuration and TurnToDuration.
|
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.
LGTM
@xushiwei Please review this PR; it’s an important fix for the Go+ Builder animation feature. |
issue: #300

project file: bug_anim.zip
config:
result preview:
animation_group_bug.mp4