Skip to content
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

Allow duplicating animation sprites #67533

Closed
wants to merge 3 commits into from

Conversation

nonunknown
Copy link
Contributor

Implements #3942

PS:

  • As I'm a new contributor, my code can be messed or not following rules, any review to the codebase is welcome!!!
  • Cherrypick for 3.x
duplicate_anim.mp4

@dalexeev

This comment was marked as off-topic.

}

undo_redo->create_action(TTR("Duplicate Animation"));
undo_redo->add_do_method(frames, "add_animation", name);
Copy link
Member

@groud groud Oct 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not a big issue, but I wonder if it's the best to duplicate manually each property of the animation. If we add a property on SpriteFrames's animation, then this will break.
I think it would be better to modify the SpriteFrames.animations property directly instead, that should make it future-proof.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you explain deeper please, I think I didnt got it! what I got was: create a for loop and execute each action like the animation was being created manually?

Copy link
Member

@groud groud Oct 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean, that's fine and it works. But if we someday add a new property to an animation, then it will break because you will be missing an action to copy the new property in the new create animation. So instead, I think you could use the SpriteFrames.animations property instead.
It would be something like:

undo_redo->add_undo_property(frames, "animations", frames.animations);
// Find the animation to duplicate in the frames.animations array, put it in the duplicated_animation variable.
...
//
Array new_animations = frames.animations;
new_animations.push_back(duplicated_animation); 
undo_redo->add_do_property(frames, "animations", new_animations);

But if you think it's too complex your solution works too, I don't mind much, it might just be a bit less future-proof.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anyway, I will approve the PR anyway, I think it's good to merge as-is.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SpriteFrames have a struct named Anim, so it's easy to duplicate everything at once. But this needs to be done in SpriteFrames, something like duplicate_animation(animation, new_animation) and the code

void duplicate_animation(from, to) {
animation[to] = animations[from];
}

(structs are passed by value, so this should be enough)

@nonunknown
Copy link
Contributor Author

Related:

this is not about duplicating frames, but rather, duplicate the entire animation, like creating a new one

@volokh0x
Copy link
Contributor

Possible improvements:

  • Wrong button icon:
    copy: ActionCopy
    duplicate: Duplicate
  • No shortcut for the new button
    The standard one is: Ctrl + D
    They work badly in this area, but that's for a separate PR, I guess
  • No tooltip for the new button
    Could be provided with a button shortcut

undo_redo->add_do_method(this, "_update_library");
undo_redo->add_undo_method(this, "_update_library");

// Not sure whether this part is needed/wanted (`_animation_add` is doing the same thing).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should do something about this comment. Either use _animation_add() here if it's possible, or add a FIXME or something.

@nonunknown nonunknown closed this Nov 28, 2022
@nonunknown nonunknown deleted the duplicate_anim branch November 28, 2022 21:52
@KoBeWi
Copy link
Member

KoBeWi commented Nov 28, 2022

Why was this closed? Are you going to open a new PR?

@nonunknown
Copy link
Contributor Author

yes!

@aaronfranke aaronfranke removed this from the 4.x milestone Feb 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

9 participants