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

RBF Manager 2.0: Miscellaneous Improvements #324

Merged
merged 21 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5018a5c
The user interface now remembers its previous size, and won't recreat…
joji2468ng Sep 30, 2023
f5c0df8
Set 'Display Keyable' as the default, or use 'Display Non-Keyable' if…
joji2468ng Sep 30, 2023
c97987a
Changed button and selectionNode styles
joji2468ng Oct 3, 2023
4b3e9f8
New layout design
joji2468ng Oct 3, 2023
990203c
Refactored codes
joji2468ng Oct 3, 2023
bf91c10
Added a button to add new driven object, refactored some codes
joji2468ng Oct 7, 2023
ddad603
Update rbf_manager_ui.py
joji2468ng Oct 7, 2023
64f3421
QSplitter was added between attributeWidget and tableWidget.
joji2468ng Oct 8, 2023
d8ac05a
Added a new context menu item in QListWidget for both driver and driven.
joji2468ng Oct 10, 2023
cfd9cc3
Changed the height size of buttons and layout of pose buttons
joji2468ng Oct 10, 2023
41458b8
Fixed a bug where a new driven tab couldn't be generated
joji2468ng Oct 10, 2023
d1af20e
Updated to version 1.0.9
joji2468ng Oct 10, 2023
e09da11
Refactored the entire codebase to improve readability and maintainabi…
joji2468ng Oct 10, 2023
e7d13ab
Optimized the codebase and fixed a crash when refreshing the UI
joji2468ng Oct 12, 2023
7f77b37
Approximate small float values to zero to clean up data and make it m…
joji2468ng Oct 13, 2023
8919a71
Approximate small values to zero and rounds the others.
joji2468ng Oct 25, 2023
5c4a2a7
Revert "Approximate small values to zero and rounds the others."
joji2468ng Oct 25, 2023
e351a13
Transitioning to RBFmanager 2.0 and packaging it in a self-contained…
joji2468ng Nov 4, 2023
7344691
Add icons
joji2468ng Nov 5, 2023
ce71d1f
Created widget.py and refactored the code
joji2468ng Nov 11, 2023
2e65129
Merge branch 'master' into rbfManger
joji2468ng Nov 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions release/scripts/mgear/rigbits/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def install():
("Duplicate symmetrical", str_duplicateSym),
("-----", None),
("RBF Manager", str_rbf_manager_ui),
("RBF Manager2", str_rbf_manager2_ui),
("SDK Manager (BETA)", str_SDK_manager_ui),
("-----", None),
("Space Manager", str_space_manager),
Expand Down Expand Up @@ -191,6 +192,11 @@ def install_utils_menu(m):
rbf_manager_ui.show()
"""

str_rbf_manager2_ui = """
from mgear.rigbits.rbf_manager2 import rbf_manager_ui
rbf_manager_ui.show()
"""

str_SDK_manager_ui = """
from mgear.rigbits.sdk_manager import SDK_manager_ui
SDK_manager_ui.show()
Expand Down
Empty file.
Loading
Loading