-
Notifications
You must be signed in to change notification settings - Fork 6
Blender 2.8x support #12
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
Open
carter2422
wants to merge
303
commits into
master
Choose a base branch
from
b280
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
added context manager (`profiler.code`) so that profiled code can be wrapped in `with`. - better handles when exceptions occur - improves readability a bit - prevents accidentally using same variable with nested profiles - explicit finish of profile section
for some reason, `inspect.isfunction` was causing problems with Blender's internal operator stuff, causing the operator to become unregistered. have no idea why. effect: could not run RF second time without restarting Blender. change: use `type` instead of `inspect` to prevent triggering an unregister.
- many CC fns now has _cc_ prefix to prevent accidental overwrites - CC can now ignore sending events to ui (document) - 2d line segment drawing now available, with stippling! (stipple removed in b280)
boundvar - allows for wrapping local var in setter/getter - useful for UI!
still not working how i'd like (requires tuning to get labeled inputs to behave appropriately)... but it's working for now
- bezier now uses generalized mat,vec mult fn - generalized new shader creation - reads from .glsl file, similar to previous - moved glsl source to files - added more drawing fns: 2D lines, 2D points - started 3D drawing fns, still WiP
CC was adding an exception handling fn each time CC was started. now it removes the handler once CC ends
…rridable defaults, code cleanup/refactor
bug: was not translating when setting
- can get first n actions in human-readable form - reset statusbar when CC ends
still needs work: - visual bugs with width+positioning - strange performance issues when dragging off the element
not sure of the cause, but if _under_mousedown is None, the mousedown event handler will effectively ignore the mousedown event. see RetopoFlow issue #857
- caching font filenames now - font mapping using nested dict (font family, font style, font weight) rather than constructed strings - creating local names for math.isinf, math.floor, math.ceil - removing try:except in _get_style_num. *might* cause issues if v isn't correct type, but this *should never* happen :P - replaced series of if/elifs with dict
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Not ready to merge yet