John Kiril Swenson eliphaz
  • Joined on 2021-06-11
John Kiril Swenson commented on pull request blender/blender#123217 2024-06-14 22:56:12 +02:00
VSE: Fix glitchy timeline snapping for small mouse movements around valid snap

Sure thing. Applied the diff, also changed line 302 a bit to make the math clearer:

From: abs(snap_target_frame - snap_source_frame - round_fl_to_int(t->values[0]));
To: abs(snap_target_fram…
John Kiril Swenson pushed to vse-fix-glitchy-timeline-snapping at eliphaz/blender 2024-06-14 22:52:25 +02:00
3ca8c0062b Keep original variable names
John Kiril Swenson created pull request blender/blender#123217 2024-06-14 07:41:25 +02:00
VSE: Fix glitchy timeline snapping
John Kiril Swenson pushed to vse-fix-glitchy-timeline-snapping at eliphaz/blender 2024-06-14 07:39:25 +02:00
797f41934a VSE: Fix glitchy timeline snapping
b03a6bbd60 Cleanup: Remove left-over debug print in tests.
5dfc197262 IDProp: BPY: Support assigning large int values to float properties.
7a7f64cf9d Fix: EEVEE-Next: Broken area and spot light culling in planar probes
bd764a5796 Windows: 4.2 Library updates for ARM64
Compare 10 commits »
John Kiril Swenson created branch vse-fix-glitchy-timeline-snapping in eliphaz/blender 2024-06-14 07:39:24 +02:00
John Kiril Swenson pushed to vse-preview-snapping-clean at eliphaz/blender 2024-06-14 05:01:39 +02:00
b73d39cf86 First pass, will refactor (still buggy)
John Kiril Swenson deleted branch vse-smallfix-both-handle-snap from eliphaz/blender 2024-06-11 01:08:40 +02:00
John Kiril Swenson commented on pull request blender/blender#122934 2024-06-11 01:03:40 +02:00
VSE: Fix snap to hold offset

For me, snapping to hold points is mainly useful for snapping a strip's handles to it's own hold points. Is this addressed with this patch?

This just restores the functionality that was there…

John Kiril Swenson deleted branch vse-fix-hold-offset-snap from eliphaz/blender 2024-06-11 00:59:50 +02:00
John Kiril Swenson commented on pull request blender/blender#122931 2024-06-09 02:32:58 +02:00
Fix VSE snapping when both strip handles selected

Accidentally based this fix off main but it would be useful to have in 4.2, for whoever merges it ^^;

John Kiril Swenson created pull request blender/blender#122934 2024-06-09 02:31:18 +02:00
VSE: Fix snap to hold offset
John Kiril Swenson created branch vse-fix-hold-offset-snap in eliphaz/blender 2024-06-09 02:29:58 +02:00
John Kiril Swenson pushed to vse-fix-hold-offset-snap at eliphaz/blender 2024-06-09 02:29:58 +02:00
d899ecb2ec VSE: Fix snap to hold offset
965a138671 Fix #121025: Edge Slide not picking the correct reference edge
efd3c4b3c9 Fix #122896: Knife snap to edge fails when a vertex is behind the viewer
85f026f478 Cleanup: Move closest_ray_to_segment_v3 logic from snapping code to BLI
fb7d5e49d3 Fix: EEVEE-Next: Shadow: Very low resolution shadow in viewport
Compare 10 commits »
John Kiril Swenson deleted branch vse-preview-snapping from eliphaz/blender 2024-06-09 00:03:55 +02:00
John Kiril Swenson created pull request blender/blender#122931 2024-06-08 23:52:55 +02:00
Fix VSE snapping when both strip handles selected
John Kiril Swenson pushed to vse-smallfix-both-handle-snap at eliphaz/blender 2024-06-08 23:52:08 +02:00
f9a470f154 Fix VSE snapping when both strip handles selected
John Kiril Swenson created branch vse-smallfix-both-handle-snap in eliphaz/blender 2024-06-08 23:52:08 +02:00
John Kiril Swenson pushed to vse-preview-snapping-clean at eliphaz/blender 2024-06-06 00:53:45 +02:00
4bf33cb55d Tweak RNA and UI
040521e617 Create initial versioning code
397bd63b95 Add snapping in VSE Preview
c38b711c48 Merge branch 'blender-v4.2-release'
a4d933e93e Cycles: Clamp sample number during viewport navigation to max samples
Compare 81 commits »
John Kiril Swenson closed pull request blender/blender#122349 2024-06-05 06:43:39 +02:00
WIP: (Old) Add snapping in VSE Preview
John Kiril Swenson commented on pull request blender/blender#122349 2024-06-05 06:43:37 +02:00
WIP: (Old) Add snapping in VSE Preview

I screwed up and accidentally committed changes from main instead of rebasing which has clogged up the page 😖 Will redirect further development to #122759

Sorry about that guys, still new to…