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

Add Support for Triggering Events via AnimationEvents #15538

Open
wants to merge 66 commits into
base: main
Choose a base branch
from

Commits on Sep 30, 2024

  1. example init

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    f5bfb0e View commit details
    Browse the repository at this point in the history
  2. Update Cargo.toml

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    fa01cd1 View commit details
    Browse the repository at this point in the history
  3. implement animation triggers

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    f970677 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3d067cc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a34e47a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6df2bf7 View commit details
    Browse the repository at this point in the history
  7. rename trigger -> event

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    44a228f View commit details
    Browse the repository at this point in the history
  8. add some docs

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    578f579 View commit details
    Browse the repository at this point in the history
  9. update examples readme

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    e9c5af1 View commit details
    Browse the repository at this point in the history
  10. edit comments

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    463a3b0 View commit details
    Browse the repository at this point in the history
  11. use Box<dyn AnimationEvent>

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    841e517 View commit details
    Browse the repository at this point in the history
  12. module doc

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    fce8da2 View commit details
    Browse the repository at this point in the history
  13. use core instead of std

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    c292343 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6dee939 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    8a6aabf View commit details
    Browse the repository at this point in the history
  16. remove dbg

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    c544f7a View commit details
    Browse the repository at this point in the history
  17. update examples

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    c0e6d11 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    a07df83 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    4e14010 View commit details
    Browse the repository at this point in the history
  20. cleanup use

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    d2f1848 View commit details
    Browse the repository at this point in the history
  21. fix typo

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    1ff5b54 View commit details
    Browse the repository at this point in the history
  22. rename events -> animation_events

    rename events -> animation_events
    
    rename events -> animation_events
    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    305deb8 View commit details
    Browse the repository at this point in the history
  23. from_str -> from_iter

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    ba14f36 View commit details
    Browse the repository at this point in the history
  24. rename animation_events -> animation_event

    cont
    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    d2ed656 View commit details
    Browse the repository at this point in the history
  25. reflect comments

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    b5d9a87 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    da91ee3 View commit details
    Browse the repository at this point in the history
  27. reverse animation

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    1e2ea51 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    3419bca View commit details
    Browse the repository at this point in the history
  29. example comments

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    a02cd8c View commit details
    Browse the repository at this point in the history
  30. fix typo

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    ebb29f5 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    06535ff View commit details
    Browse the repository at this point in the history
  32. docs/cleanup add_event

    atornity committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    a5a5642 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. fix logic error

    hopefully
    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    db74d8f View commit details
    Browse the repository at this point in the history
  2. Update animation_events.rs

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    ab10ea1 View commit details
    Browse the repository at this point in the history
  3. create AnimationTriggerIter

    cont
    
    Update lib.rs
    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    e4f0ea4 View commit details
    Browse the repository at this point in the history
  4. Update animation_events.rs

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    49f9692 View commit details
    Browse the repository at this point in the history
  5. remove unwrap

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    7f97667 View commit details
    Browse the repository at this point in the history
  6. raname trigger -> events

    rename AnimationTriggers -> AnimationEvents
    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    5a42a67 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    30f146b View commit details
    Browse the repository at this point in the history
  8. fix examples

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    09b6842 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fd86ce5 View commit details
    Browse the repository at this point in the history
  10. bunny detective example

    Update bunny_detective.rs
    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    45b7b79 View commit details
    Browse the repository at this point in the history
  11. reset animated fox example

    it was too complicated
    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    12b0dcc View commit details
    Browse the repository at this point in the history
  12. print example controls

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    4118846 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5c17423 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c5725fb View commit details
    Browse the repository at this point in the history
  15. don't use deprecated bundle

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    e1cc404 View commit details
    Browse the repository at this point in the history
  16. Update README.md

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    ab599a6 View commit details
    Browse the repository at this point in the history
  17. fix bug

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    d77beab View commit details
    Browse the repository at this point in the history
  18. Update bunny_detective.rs

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    c74da72 View commit details
    Browse the repository at this point in the history
  19. remove unwrap

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    8636ea6 View commit details
    Browse the repository at this point in the history
  20. ugh

    atornity committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    7bffccc View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    86eee63 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    ec12ab9 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Configuration menu
    Copy the full SHA
    2148f76 View commit details
    Browse the repository at this point in the history
  2. clippy + comments

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    47f525a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    511b0c8 View commit details
    Browse the repository at this point in the history
  4. Update lib.rs

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    a7931d6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7ef25ce View commit details
    Browse the repository at this point in the history
  6. use required components

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    f8fd00b View commit details
    Browse the repository at this point in the history
  7. Update lib.rs

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    6b8665a View commit details
    Browse the repository at this point in the history
  8. fix iterator

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    dfd422f View commit details
    Browse the repository at this point in the history
  9. Update animation_events.rs

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    1c41b98 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5decc0e View commit details
    Browse the repository at this point in the history
  11. fix trigger order

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    fd8953a View commit details
    Browse the repository at this point in the history
  12. typos

    atornity committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    932ad5b View commit details
    Browse the repository at this point in the history