[PR #1408] [MERGED] feat(animation): implements cubic-bezier for animation styles #1388

Closed
opened 2026-01-05 14:55:07 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/1408
Author: @thearturca
Created: 4/13/2025
Status: Merged
Merged: 4/23/2025
Merged by: @LGUG2Z

Base: masterHead: feat/impl-cubic-bezier-for-animation-style


📝 Commits (1)

  • 649784b feat(animation): implements cubic-bezier for animation styles

📊 Changes

2 files changed (+135 additions, -1 deletions)

View changed files

📝 komorebi/src/animation/style.rs (+56 -0)
📝 komorebi/src/core/animation.rs (+79 -1)

📄 Description

This commit adds ability to use cubic-bezier. Cubic-bezier allow to customize smoothness of animation.

Config for cubic-bezier looks like this:

  "animation": {
    ...
    "style": [0.32, 0.72, 0, 1],
    ...
  },

Previous options for style are untouched.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/LGUG2Z/komorebi/pull/1408 **Author:** [@thearturca](https://github.com/thearturca) **Created:** 4/13/2025 **Status:** ✅ Merged **Merged:** 4/23/2025 **Merged by:** [@LGUG2Z](https://github.com/LGUG2Z) **Base:** `master` ← **Head:** `feat/impl-cubic-bezier-for-animation-style` --- ### 📝 Commits (1) - [`649784b`](https://github.com/LGUG2Z/komorebi/commit/649784bd0b790327432f51021fa58577cc22745d) feat(animation): implements cubic-bezier for animation styles ### 📊 Changes **2 files changed** (+135 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `komorebi/src/animation/style.rs` (+56 -0) 📝 `komorebi/src/core/animation.rs` (+79 -1) </details> ### 📄 Description This commit adds ability to use cubic-bezier. Cubic-bezier allow to customize smoothness of animation. Config for cubic-bezier looks like this: ```json "animation": { ... "style": [0.32, 0.72, 0, 1], ... }, ``` Previous options for `style` are untouched. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-01-05 14:55:07 +01:00
adam closed this issue 2026-01-05 14:55:07 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#1388