-
Notifications
You must be signed in to change notification settings - Fork 1
/
BLUI_Keymap.py
3522 lines (3288 loc) · 312 KB
/
BLUI_Keymap.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
###########################
#### BLUi 0.8.6 Keymap ####
###########################
###########################
#### TABLE OF CONTENTS ####
###########################
#
# - 3D VIEW - 117
#
# - 3D VIEW TOOLS - 216
#
# - ANIMATION - 827
#
# - ARMATURE - 871
#
# - BEVEL - 912
#
# - CLIP EDITOR - 941
#
# - CONSOLE - 1072
#
# - CURVE - 1112
#
# - CUSTOM NORMALS - 1150
#
# - DOPESHEET - 1171
#
# - EYEDROPPER - 1243
#
# - FILE BROWSER - 1268
#
# - FONT - 1341
#
# - FRAMES - 1389
#
# - GENERIC GIZMO - 1402
#
# - GENERIC TOOL - 1447
#
# - GESTURE - 1482
#
# - GRAPH EDITOR - 1521
#
# - GREASE PENCIL - 1589
#
# - IMAGE EDITOR - 1864
#
# - INFO - 2031
#
# - KNIFE MODAL - 2053
#
# - LATTICE - 2080
#
# - MARKERS - 2102
#
# - MASK EDITING - 2125
#
# - MESH - 2170
#
# - METABALL - 2226
#
# - NLA EDITOR - 2254
#
# - NODE EDITOR - 2321
#
# - OBJECT MODE - 2436
#
# - OUTLINER - 2509
#
# - PAINT - 2568
#
# - PARTICLE - 2613
#
# - POSE - 2640
#
# - PROPERTY EDITOR - 2686
#
# - REGION CONTEXT MENU - 2711
#
# - SCREEN - 2719
#
# - SCULPT - 2763
#
# - SEQUENCER - 2848
#
# - STANDARD MODAL MAP - 2977
#
# - TEXT - 2990
#
# - TIMESCRUB - 3085
#
# - TOOLBAR POPUP - 3093
#
# - TRANSFORM MODAL MAP - 3105
#
# - UV EDITOR - 3160
#
# - USER INTERFACE - 3211
#
# - VERTEX PAINT - 3232
#
# - VIEW 2D - 3261
#
# - VIEW 3D MODAL - 3307
#
# - WEIGHT PAINT - 3469
#
# - WINDOW - 3486
#
###########################
keyconfig_version = (2, 93, 21)
keyconfig_data = \
[
###########
# 3D VIEW #
###########
("3D View",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("wm.call_panel",{"type": 'RET', "value": 'PRESS', "repeat": True},{"properties":[("name", 'TOPBAR_PT_name'),("keep_open", False),],},),
("wm.search_menu", {"type": 'TAB', "value": 'PRESS', "repeat": True}, None),
("view3d.localview", {"type": 'I', "value": 'PRESS', "shift": True, "repeat": True}, None),
("view3d.localview", {"type": 'MOUSESMARTZOOM', "value": 'ANY'}, None),
("wm.call_menu_pie",{"type": 'V', "value": 'PRESS', "repeat": True},{"properties":[("name", 'VIEW3D_MT_view_pie'),]},),
("view3d.rotate", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True}, None),
("view3d.move", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "alt": True}, None),
("view3d.zoom", {"type": 'RIGHTMOUSE', "value": 'PRESS', "alt": True}, None),
("view3d.view_selected",{"type": 'F', "value": 'PRESS', "shift": True, "repeat": True},{"properties":[("use_all_regions", True),],},),
("view3d.view_selected",{"type": 'F', "value": 'PRESS', "repeat": True},{"properties":[("use_all_regions", False),],},),
("view3d.smoothview", {"type": 'TIMER1', "value": 'ANY', "any": True}, None),
("view3d.rotate", {"type": 'TRACKPADPAN', "value": 'ANY'}, None),
("view3d.rotate", {"type": 'MOUSEROTATE', "value": 'ANY'}, None),
("view3d.move", {"type": 'TRACKPADPAN', "value": 'ANY', "shift": True}, None),
("view3d.zoom", {"type": 'TRACKPADZOOM', "value": 'ANY'}, None),
("view3d.zoom", {"type": 'TRACKPADPAN', "value": 'ANY', "ctrl": True}, None),
("view3d.zoom",{"type": 'NUMPAD_PLUS', "value": 'PRESS', "repeat": True},{"properties":[("delta", 1),],},),
("view3d.zoom",{"type": 'NUMPAD_MINUS', "value": 'PRESS', "repeat": True},{"properties":[("delta", -1),],},),
("view3d.zoom",{"type": 'WHEELINMOUSE', "value": 'PRESS'},{"properties":[("delta", 1),],},),
("view3d.zoom",{"type": 'WHEELOUTMOUSE', "value": 'PRESS'},{"properties":[("delta", -1),],},),
("view3d.zoom",{"type": 'WHEELINMOUSE', "value": 'PRESS', "alt": True},{"properties":[("delta", 1),],},),
("view3d.zoom",{"type": 'WHEELOUTMOUSE', "value": 'PRESS', "alt": True},{"properties":[("delta", -1),],},),
("view3d.dolly",{"type": 'NUMPAD_PLUS', "value": 'PRESS', "shift": True, "repeat": True},{"properties":[("delta", 1),],},),
("view3d.dolly",{"type": 'NUMPAD_MINUS', "value": 'PRESS', "shift": True, "repeat": True},{"properties":[("delta", -1),],},),
("view3d.view_all",{"type": 'A', "value": 'PRESS', "repeat": True},{"properties":[("center", False),],},),
("view3d.view_all",{"type": 'A', "value": 'PRESS', "shift": True, "repeat": True},{"properties":[("use_all_regions", True),("center", False),],},),
("view3d.view_camera", {"type": 'F4', "value": 'PRESS', "repeat": True}, None),
("view3d.view_axis",{"type": 'F1', "value": 'PRESS', "repeat": True},{"properties":[("type", 'FRONT'),],},),
("view3d.view_axis",{"type": 'F2', "value": 'PRESS', "repeat": True}, {"properties":[("type", 'RIGHT'),],},),
("view3d.view_axis",{"type": 'F3', "value": 'PRESS', "repeat": True},{"properties":[("type", 'TOP'),],},),
("view3d.view_axis",{"type": 'F1', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties":[("type", 'BACK'),],},),
("view3d.view_axis",{"type": 'F2', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties":[("type", 'LEFT'),],},),
("view3d.view_axis",{"type": 'F3', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties":[("type", 'BOTTOM'),],},),
("view3d.view_orbit",{"type": 'F5', "value": 'PRESS', "repeat": True},{"properties":[("angle", 3.1415927),("type", 'ORBITRIGHT'),],},),
("view3d.ndof_orbit_zoom", {"type": 'NDOF_MOTION', "value": 'ANY'}, None),
("view3d.ndof_orbit", {"type": 'NDOF_MOTION', "value": 'ANY', "ctrl": True}, None),
("view3d.ndof_pan", {"type": 'NDOF_MOTION', "value": 'ANY', "shift": True}, None),
("view3d.ndof_all", {"type": 'NDOF_MOTION', "value": 'ANY', "shift": True, "ctrl": True}, None),
("view3d.view_selected",{"type": 'NDOF_BUTTON_FIT', "value": 'PRESS'},{"properties": [("use_all_regions", False),], },),
("view3d.view_roll",{"type": 'NDOF_BUTTON_ROLL_CCW', "value": 'PRESS'},{"properties": [("type", 'LEFT'),], },),
("view3d.view_roll",{"type": 'NDOF_BUTTON_ROLL_CCW', "value": 'PRESS'},{"properties": [("type", 'RIGHT'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_FRONT', "value": 'PRESS'},{"properties": [("type", 'FRONT'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_BACK', "value": 'PRESS'},{"properties": [("type", 'BACK'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_LEFT', "value": 'PRESS'},{"properties": [("type", 'LEFT'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_RIGHT', "value": 'PRESS'},{"properties": [("type", 'RIGHT'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_TOP', "value": 'PRESS'},{"properties": [("type", 'TOP'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_BOTTOM', "value": 'PRESS'},{"properties": [("type", 'BOTTOM'),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_FRONT', "value": 'PRESS', "shift": True},{"properties": [("type", 'FRONT'),("align_active", True),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_RIGHT', "value": 'PRESS', "shift": True},{"properties": [("type", 'RIGHT'),("align_active", True),], },),
("view3d.view_axis",{"type": 'NDOF_BUTTON_TOP', "value": 'PRESS', "shift": True},{"properties": [("type", 'TOP'),("align_active", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'CLICK'},{"properties": [("deselect_all", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True},{"properties": [("extend", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'CLICK', "ctrl": True},{"properties": [("deselect", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True, "ctrl": True},{"properties": [("extend", True),("toggle", True),("center", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True, "alt": True},{"properties": [("toggle", True),("enumerate", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True, "ctrl": True, "alt": True},{"properties": [("toggle", True),("center", True),("enumerate", True),], },),
("view3d.zoom_border", {"type": 'Z', "value": 'PRESS', "repeat": True}, None),
("view3d.copybuffer", {"type": 'C', "value": 'PRESS', "ctrl": True, "repeat": True}, None),
("view3d.pastebuffer", {"type": 'V', "value": 'PRESS', "ctrl": True, "repeat": True}, None),
("wm.call_menu_pie",{"type": 'X', "value": 'PRESS', "shift": True, "repeat": True},{"properties": [("name", 'VIEW3D_MT_snap_pie'),], },),
("transform.translate", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("wm.call_menu_pie",{"type": 'PERIOD', "value": 'PRESS', "repeat": True},{"properties": [("name", 'VIEW3D_MT_pivot_pie'),], },),
("wm.call_menu_pie",{"type": 'COMMA', "value": 'PRESS', "repeat": True},{"properties": [("name", 'VIEW3D_MT_orientations_pie'),], },),
("view3d.toggle_xray", {"type": 'X', "value": 'PRESS', "alt": True, "repeat": True}, None),
("wm.context_toggle",{"type": 'X', "value": 'PRESS', "repeat": True},{"properties": [("data_path", 'tool_settings.use_snap'),], },),
("view3d.view_axis",{"type": 'NUMPAD_1', "value": 'PRESS', "repeat": True},{"properties": [("type", 'FRONT'),], },),
("view3d.view_axis",{"type": 'NUMPAD_1', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("type", 'BACK'),], },),
("view3d.view_axis",{"type": 'NUMPAD_3', "value": 'PRESS', "repeat": True},{"properties": [("type", 'RIGHT'),], },),
("view3d.view_axis",{"type": 'NUMPAD_3', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("type", 'LEFT'),], },),
("view3d.view_axis",{"type": 'NUMPAD_7', "value": 'PRESS', "repeat": True},{"properties": [("type", 'TOP'),], },),
("view3d.view_axis",{"type": 'NUMPAD_7', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("type", 'BOTTOM'),], },),
("view3d.view_persportho", {"type": 'NUMPAD_5', "value": 'PRESS', "repeat": True}, None),
("view3d.view_camera", {"type": 'NUMPAD_0', "value": 'PRESS', "repeat": True}, None),
("view3d.view_orbit",{"type": 'NUMPAD_4', "value": 'PRESS', "repeat": True},{"properties": [("type", 'ORBITLEFT'),], },),
("view3d.view_orbit",{"type": 'NUMPAD_6', "value": 'PRESS', "repeat": True},{"properties": [("type", 'ORBITRIGHT'),], },),
("view3d.view_orbit",{"type": 'NUMPAD_8', "value": 'PRESS', "repeat": True},{"properties": [("type", 'ORBITUP'),], },),
("view3d.view_orbit",{"type": 'NUMPAD_2', "value": 'PRESS', "repeat": True},{"properties": [("type", 'ORBITDOWN'),], },),
("view3d.view_persportho", {"type": 'G', "value": 'PRESS', "alt": True, "repeat": True}, None),
("view3d.view_axis",{"type": 'H', "value": 'PRESS', "alt": True, "repeat": True},{"properties": [("type", 'FRONT'),], },),
("view3d.view_axis",{"type": 'K', "value": 'PRESS', "alt": True, "repeat": True},{"properties": [("type", 'LEFT'),], },),
("view3d.view_axis",{"type": 'J', "value": 'PRESS', "alt": True, "repeat": True},{"properties": [("type", 'TOP'),], },),
("view3d.toggle_shading",{"type": 'TWO', "value": 'PRESS', "alt": True, "repeat": True},{"properties": [("type", 'WIREFRAME'),], },),
("view3d.toggle_shading",{"type": 'THREE', "value": 'PRESS', "alt": True, "repeat": True},{"properties": [("type", 'SOLID'),], },),
("view3d.toggle_shading",{"type": 'FOUR', "value": 'PRESS', "alt": True, "repeat": True},{"properties": [("type", 'RENDERED'),], },),
("blui.right_mouse_navigation", {"type": 'RIGHTMOUSE', "value": 'PRESS'}, None),],},),
("3D View Generic",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("wm.context_toggle",{"type": 'LEFT_BRACKET', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("data_path", 'space_data.show_region_toolbar'),], },),
("wm.context_toggle",{"type": 'RIGHT_BRACKET', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("data_path", 'space_data.show_region_ui'),], },),
("wm.context_toggle",{"type": 'N', "value": 'PRESS', "repeat": True},{"properties": [("data_path", 'space_data.show_region_ui'),], },), ],},),
#################
# 3D VIEW TOOLS #
#################
("3D View Tool: Cursor",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.cursor3d", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("transform.translate",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("cursor_transform", True),("release_confirm", True),], },),
("view3d.cursor3d", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("transform.translate",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("cursor_transform", True),("release_confirm", True),], },), ],},),
("3D View Tool: Edit Armature, Bone Envelope",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.bbone_resize",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.bbone_resize",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Armature, Bone Size",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.transform",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("mode", 'BONE_ENVELOPE'),("release_confirm", True),], },),
("transform.transform",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("mode", 'BONE_ENVELOPE'),("release_confirm", True),], },), ],},),
("3D View Tool: Edit Armature, Extrude",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("armature.extrude_move",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("armature.extrude_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Armature, Extrude to Cursor",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("armature.click_extrude", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None), ("armature.click_extrude", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Armature, Roll",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.transform",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("mode", 'BONE_ROLL'),("release_confirm", True),], },),
("transform.transform",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("mode", 'BONE_ROLL'),("release_confirm", True),], },), ],},),
("3D View Tool: Edit Curve, Draw",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("curve.draw",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },),
("curve.draw",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },), ],},),
("3D View Tool: Edit Curve, Extrude",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("curve.extrude_move",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("curve.extrude_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Curve, Extrude to Cursor",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("curve.vertex_add", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("curve.vertex_add", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Curve, Radius",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.transform",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("mode", 'CURVE_SHRINKFATTEN'),("release_confirm", True),], },),
("transform.transform",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("mode", 'CURVE_SHRINKFATTEN'),("release_confirm", True),], },), ],},),
("3D View Tool: Edit Curve, Randomize",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.vertex_random",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("wait_for_input", False),], },),
("transform.vertex_random",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },), ],},),
("3D View Tool: Edit Curve, Tilt",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.tilt",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.tilt",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, Bend",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.bend",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.bend",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, Extrude",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.extrude_move", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.extrude_move", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Gpencil, Interpolate",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.interpolate",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, Radius",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.transform",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("mode", 'GPENCIL_SHRINKFATTEN'),("release_confirm", True),], },),
("transform.transform",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("mode", 'GPENCIL_SHRINKFATTEN'),("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, Select Box",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("mode", 'ADD'),], },),
("gpencil.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("gpencil.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True, "ctrl": True},{"properties": [("mode", 'AND'),], },), ],},),
("3D View Tool: Edit Gpencil, Select Circle",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },),
("gpencil.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},{"properties": [("wait_for_input", False),("mode", 'ADD'),], },),
("gpencil.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("wait_for_input", False),("mode", 'SUB'),], },), ],},),
("3D View Tool: Edit Gpencil, Select Lasso",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("mode", 'ADD'),], },),
("gpencil.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("gpencil.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True, "ctrl": True},{"properties": [("mode", 'AND'),], },), ],}),
("3D View Tool: Edit Gpencil, Shear",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.shear",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.shear",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, To Sphere",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.tosphere",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.tosphere",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, Transform Fill",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.transform_fill",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("gpencil.transform_fill",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Gpencil, Tweak",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("deselect_all", True),], },),
("gpencil.select",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},{"properties": [("extend", True),], },), ],},),
("3D View Tool: Edit Mesh, Bevel",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.bevel",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("mesh.bevel",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Mesh, Bisect",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.bisect", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ("mesh.bisect", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Mesh, Edge Slide",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.edge_slide",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.edge_slide",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Mesh, Extrude Along Normals",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.extrude_region_shrink_fatten",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_shrink_fatten", [("release_confirm", True), ], ),], },),
("mesh.extrude_region_shrink_fatten",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_shrink_fatten", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Mesh, Extrude Individual",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.extrude_faces_move",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_shrink_fatten", [("release_confirm", True), ], ),], },),
("mesh.extrude_faces_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_shrink_fatten", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Mesh, Extrude Manifold",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.extrude_manifold",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("MESH_OT_extrude_region", [("use_dissolve_ortho_edges", True), ], ),("TRANSFORM_OT_translate", [("orient_type", 'NORMAL'), ("constraint_axis", (False, False, True)), ("release_confirm", True), ("use_automerge_and_split", True), ], ),], },),
("mesh.extrude_manifold",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("MESH_OT_extrude_region", [("use_dissolve_ortho_edges", True), ], ),("TRANSFORM_OT_translate", [("orient_type", 'NORMAL'), ("constraint_axis", (False, False, True)), ("release_confirm", True), ("use_automerge_and_split", True), ], ),], },), ],},),
("3D View Tool: Edit Mesh, Extrude Region",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.extrude_context_move",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.extrude_context_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },), ],}),
("3D View Tool: Edit Mesh, Extrude to Cursor",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.dupli_extrude_cursor", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("mesh.dupli_extrude_cursor", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Mesh, Inset Faces",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.inset",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("mesh.inset",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Mesh, Knife",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.knife_tool",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },),
("mesh.knife_tool",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },), ],},),
("3D View Tool: Edit Mesh, Loop Cut",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.loopcut_slide",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_edge_slide", [("release_confirm", True), ], ),], },),
("mesh.loopcut_slide",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_edge_slide", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Mesh, Offset Edge Loop Cut",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.offset_edge_loops_slide", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("mesh.offset_edge_loops_slide", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Mesh, Poly Build",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.polybuild_extrude_at_cursor_move",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.polybuild_face_at_cursor_move",{"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.polybuild_delete_at_cursor", {"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True}, None), ("mesh.polybuild_extrude_at_cursor_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.polybuild_face_at_cursor_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.polybuild_delete_at_cursor", {"type": 'MIDDLEMOUSE', "value": 'CLICK', "shift": True}, None), ],},),
("3D View Tool: Edit Mesh, Push/Pull",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.push_pull",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.push_pull",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Mesh, Randomize",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.vertex_random",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("wait_for_input", False),], },),
("transform.vertex_random",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },), ],},),
("3D View Tool: Edit Mesh, Rip Edge",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.rip_edge_move",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.rip_edge_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Mesh, Rip Region",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.rip_move",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },),
("mesh.rip_move",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("TRANSFORM_OT_translate", [("release_confirm", True), ], ),], },), ],},),
("3D View Tool: Edit Mesh, Shrink/Fatten",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.shrink_fatten",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.shrink_fatten",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Mesh, Smooth",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.vertices_smooth",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("wait_for_input", False),], },),
("mesh.vertices_smooth",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },), ],},),
("3D View Tool: Edit Mesh, Spin",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.spin", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("mesh.spin", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Edit Mesh, Spin Duplicates",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("mesh.spin",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("dupli", True),], },),
("mesh.spin",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("dupli", True),], },), ],},),
("3D View Tool: Edit Mesh, To Sphere",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.tosphere",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.tosphere",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Edit Mesh, Vertex Slide",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.vert_slide",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.vert_slide",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Measure",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.ruler_add", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("view3d.ruler_remove", {"type": 'X', "value": 'PRESS', "repeat": True}, None),
("view3d.ruler_remove", {"type": 'DEL', "value": 'PRESS', "repeat": True}, None),
("view3d.ruler_add", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Move",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.translate",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.translate",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Object, Add Primitive",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.interactive_add",{"type": 'EVT_TWEAK_L', "value": 'ANY', "any": True},{"properties": [("wait_for_input", False),], },),
("view3d.interactive_add",{"type": 'MIDDLEMOUSE', "value": 'PRESS', "any": True},{"properties": [("wait_for_input", False),], },), ],},),
("3D View Tool: Paint Gpencil, Arc",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.primitive", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Gpencil, Box",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.primitive", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Gpencil, Circle",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.primitive", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Gpencil, Curve",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.primitive", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Gpencil, Cutter",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.stroke_cutter", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.stroke_cutter", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Gpencil, Eyedropper",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("ui.eyedropper_gpencil_color", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("ui.eyedropper_gpencil_color", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, None),
("ui.eyedropper_gpencil_color", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True, "ctrl": True}, None),
("ui.eyedropper_gpencil_color", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("ui.eyedropper_gpencil_color", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("ui.eyedropper_gpencil_color", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True, "ctrl": True}, None), ],},),
("3D View Tool: Paint Gpencil, Interpolate",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.interpolate",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Paint Gpencil, Line",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.primitive", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "alt": True}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Gpencil, Polyline",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.primitive", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.primitive", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True, "alt": True}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("gpencil.primitive", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("gpencil.select_lasso", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True, "alt": True}, None), ],},),
("3D View Tool: Paint Weight, Gradient",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("paint.weight_gradient", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("paint.weight_gradient", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Paint Weight, Sample Vertex Group",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("paint.weight_sample_group", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("paint.weight_sample_group", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Paint Weight, Sample Weight",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("paint.weight_sample", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("paint.weight_sample", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Pose, Breakdowner",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("pose.breakdown", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("pose.breakdown", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Pose, Push",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("pose.push", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("pose.push", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Pose, Relax",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("pose.relax", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("pose.relax", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Rotate",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.rotate",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.rotate",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Scale",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.resize",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("release_confirm", True),], },),
("transform.resize",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("release_confirm", True),], },), ],},),
("3D View Tool: Sculpt Gpencil, Select Box",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("mode", 'ADD'),], },),
("gpencil.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("gpencil.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True, "ctrl": True},{"properties": [("mode", 'AND'),], },), ],},),
("3D View Tool: Sculpt Gpencil, Select Circle",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },),
("gpencil.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},{"properties": [("wait_for_input", False),("mode", 'ADD'),], },),
("gpencil.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("wait_for_input", False),("mode", 'SUB'),], },), ],},),
("3D View Tool: Sculpt Gpencil, Select Lasso",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("gpencil.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("gpencil.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("mode", 'ADD'),], },),
("gpencil.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("gpencil.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True, "ctrl": True},{"properties": [("mode", 'AND'),], },), ],},),
("3D View Tool: Sculpt Gpencil, Tweak",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.cursor3d", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("transform.translate",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("cursor_transform", True),("release_confirm", True),], },), ],},),
("3D View Tool: Sculpt, Box Face Set",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.face_set_box_gesture", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Box Hide",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("paint.hide_show",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("action", 'HIDE'),], },),
("paint.hide_show",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("action", 'SHOW'),], },),
("paint.hide_show",{"type": 'RIGHTMOUSE', "value": 'PRESS'},{"properties": [("action", 'SHOW'),("area", 'ALL'),], },),
("paint.hide_show",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("action", 'HIDE'),], },),
("paint.hide_show",{"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("action", 'SHOW'),], },), ],},),
("3D View Tool: Sculpt, Box Mask",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("mode", 'ADD'),], },),
("view3d.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("view3d.select_box",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("mode", 'ADD'),], },),
("view3d.select_box",{"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("mode", 'SUB'),], },), ],},),
("3D View Tool: Sculpt, Box Trim",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.trim_box_gesture", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Cloth Filter",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.cloth_filter", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("sculpt.cloth_filter", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Sculpt, Color Filter",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.color_filter", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("sculpt.color_filter", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Sculpt, Face Set Edit",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.face_set_edit", {"type": 'LEFTMOUSE', "value": 'ANY'}, None),
("sculpt.face_set_edit", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Lasso Face Set",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.face_set_lasso_gesture", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Lasso Mask",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("paint.mask_lasso_gesture",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("value", 1.0),], },),
("paint.mask_lasso_gesture",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("value", 0.0),], },),
("paint.mask_lasso_gesture",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("value", 1.0),], },),
("paint.mask_lasso_gesture",{"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("value", 0.0),], },), ],},),
("3D View Tool: Sculpt, Lasso Trim",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.trim_lasso_gesture", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Line Mask",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("paint.mask_line_gesture",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("value", 1.0),], },),
("paint.mask_line_gesture",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("value", 0.0),], },), ],},),
("3D View Tool: Sculpt, Line Project",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.project_line_gesture", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Mask By Color",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.mask_by_color", {"type": 'LEFTMOUSE', "value": 'ANY'}, None),
("sculpt.mask_by_color", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("sculpt.mask_by_color", {"type": 'MIDDLEMOUSE', "value": 'ANY'}, None),
("sculpt.mask_by_color", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Sculpt, Mask by Color",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.mask_by_color", {"type": 'LEFTMOUSE', "value": 'ANY'}, None),
("sculpt.mask_by_color", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None), ],},),
("3D View Tool: Sculpt, Mesh Filter",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("sculpt.mesh_filter", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("sculpt.mesh_filter", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Select Box",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("view3d.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("mode", 'ADD'),], },),
("view3d.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("view3d.select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True, "ctrl": True},{"properties": [("mode", 'AND'),], },), ],},),
("3D View Tool: Select Circle",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("wait_for_input", False),], },),
("view3d.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},{"properties": [("wait_for_input", False),("mode", 'ADD'),], },),
("view3d.select_circle",{"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True},{"properties": [("wait_for_input", False),("mode", 'SUB'),], },), ],},),
("3D View Tool: Select Lasso",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.select_lasso", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("view3d.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("mode", 'ADD'),], },),
("view3d.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("mode", 'SUB'),], },),
("view3d.select_lasso",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True, "ctrl": True},{"properties": [("mode", 'AND'),], },), ],},),
("3D View Tool: Shear",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.shear",{"type": 'EVT_TWEAK_L', "value": 'NORTH'},{"properties": [("orient_axis_ortho", 'Y'),("release_confirm", True),], },),
("transform.shear",{"type": 'EVT_TWEAK_L', "value": 'SOUTH'},{"properties": [("orient_axis_ortho", 'Y'),("release_confirm", True),], },),
("transform.shear",{"type": 'EVT_TWEAK_L', "value": 'ANY'},{"properties": [("orient_axis_ortho", 'X'),("release_confirm", True),], },),
("transform.shear",{"type": 'EVT_TWEAK_M', "value": 'NORTH'},{"properties": [("orient_axis_ortho", 'Y'),("release_confirm", True),], },),
("transform.shear",{"type": 'EVT_TWEAK_M', "value": 'SOUTH'},{"properties": [("orient_axis_ortho", 'Y'),("release_confirm", True),], },),
("transform.shear",{"type": 'MIDDLEMOUSE', "value": 'PRESS'},{"properties": [("orient_axis_ortho", 'X'),("release_confirm", True),], },), ],},),
("3D View Tool: Transform",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("transform.from_gizmo", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("transform.from_gizmo", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None), ],},),
("3D View Tool: Tweak",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items":
[("view3d.select",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("deselect_all", True),], },),
("view3d.select",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},{"properties": [("toggle", True),], },), ],},),
#############
# ANIMATION #
#############
("Animation",
{"space_type": 'EMPTY', "region_type": 'WINDOW'},
{"items":
[("wm.context_toggle",{"type": 'T', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("data_path", 'space_data.show_seconds'),], },), ],},),
("Animation Channels",
{"space_type": 'EMPTY', "region_type": 'WINDOW'},
{"items":
[("anim.channels_click", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("anim.channels_click",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},{"properties": [("extend", True),], },),
("anim.channels_click",{"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True, "ctrl": True},{"properties": [("children_only", True),], },),
("anim.channels_rename", {"type": 'RET', "value": 'PRESS', "repeat": True}, None),
("anim.channels_rename", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK'}, None),
("anim.channel_select_keys", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK'}, None),
("anim.channel_select_keys",{"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "shift": True},{"properties": [("extend", True),], },),
("anim.channels_find", {"type": 'F', "value": 'PRESS', "ctrl": True, "repeat": True}, None),
("anim.channels_select_all",{"type": 'A', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("action", 'SELECT'),], },),
("anim.channels_select_all",{"type": 'A', "value": 'PRESS', "shift": True, "ctrl": True, "repeat": True},{"properties": [("action", 'DESELECT'),], },),
("anim.channels_select_all",{"type": 'I', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("action", 'INVERT'),], },),
("anim.channels_select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("anim.channels_select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "shift": True},{"properties": [("extend", True),], },),
("anim.channels_select_box",{"type": 'EVT_TWEAK_L', "value": 'ANY', "ctrl": True},{"properties": [("deselect", True),], },),
("anim.channels_delete", {"type": 'BACK_SPACE', "value": 'PRESS', "repeat": True}, None),
("anim.channels_delete", {"type": 'DEL', "value": 'PRESS', "repeat": True}, None),
("anim.channels_setting_toggle", {"type": 'W', "value": 'PRESS', "shift": True, "repeat": True}, None),
("anim.channels_setting_enable", {"type": 'W', "value": 'PRESS', "shift": True, "ctrl": True, "repeat": True}, None),
("anim.channels_setting_disable", {"type": 'W', "value": 'PRESS', "alt": True, "repeat": True}, None),
("anim.channels_editable_toggle", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK'}, None),
("anim.channels_expand", {"type": 'RIGHT_ARROW', "value": 'PRESS', "repeat": True}, None),
("anim.channels_collapse", {"type": 'LEFT_ARROW', "value": 'PRESS', "repeat": True}, None),
("anim.channels_expand",{"type": 'NUMPAD_PLUS', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("all", False),], },),
("anim.channels_collapse",{"type": 'NUMPAD_MINUS', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("all", False),], },),
("anim.channels_move",{"type": 'PAGE_UP', "value": 'PRESS', "repeat": True},{"properties": [("direction", 'UP'),], },),
("anim.channels_move",{"type": 'PAGE_DOWN', "value": 'PRESS', "repeat": True},{"properties": [("direction", 'DOWN'),], },),
("anim.channels_move",{"type": 'PAGE_UP', "value": 'PRESS', "shift": True, "repeat": True},{"properties": [("direction", 'TOP'),], },),
("anim.channels_move",{"type": 'PAGE_DOWN', "value": 'PRESS', "shift": True, "repeat": True},{"properties": [("direction", 'BOTTOM'),],}, ),
("anim.channels_group", {"type": 'G', "value": 'PRESS', "ctrl": True, "repeat": True}, None),
("anim.channels_ungroup", {"type": 'G', "value": 'PRESS', "ctrl": True, "alt": True, "repeat": True}, None),
("wm.call_menu", {"type": 'RIGHTMOUSE', "value": 'PRESS'}, {"properties":[("name", 'DOPESHEET_MT_channel_context_menu'),],}, ),
("wm.call_menu", {"type": 'APP', "value": 'PRESS', "repeat": True}, {"properties":[("name", 'DOPESHEET_MT_channel_context_menu'),],}, ), ],},),
############
# ARMATURE #
############
("Armature",
{"space_type": 'EMPTY', "region_type": 'WINDOW'},
{"items":
[("armature.hide",{"type": 'H', "value": 'PRESS', "ctrl": True},{"properties":[("unselected", False),],},),
("armature.hide",{"type": 'H', "value": 'PRESS', "shift": True},{"properties":[("unselected", True),],},),
("armature.reveal", {"type": 'H', "value": 'PRESS', "alt": True}, None),
("armature.parent_set", {"type": 'P', "value": 'PRESS'}, None),
("armature.parent_clear", {"type": 'P', "value": 'PRESS', "shift": True}, None),
("armature.select_all",{"type": 'A', "value": 'PRESS', "ctrl": True},{"properties":[("action", 'SELECT'),],},),
("armature.select_all",{"type": 'A', "value": 'PRESS', "shift": True, "ctrl": True},{"properties":[("action", 'DESELECT'),],},),
("armature.select_all",{"type": 'I', "value": 'PRESS', "ctrl": True},{"properties":[("action", 'INVERT'),],},),
("armature.select_hierarchy",{"type": 'LEFT_BRACKET', "value": 'PRESS'},{"properties":[("direction", 'PARENT'),("extend", False),],},),
("armature.select_hierarchy",{"type": 'LEFT_BRACKET', "value": 'PRESS', "shift": True},{"properties":[("direction", 'PARENT'),("extend", True),],},),
("armature.select_hierarchy",{"type": 'RIGHT_BRACKET', "value": 'PRESS'},{"properties":[("direction", 'CHILD'),("extend", False),],},),
("armature.select_hierarchy",{"type": 'RIGHT_BRACKET', "value": 'PRESS', "shift": True},{"properties":[("direction", 'CHILD'),("extend", True),],},),
("armature.select_more", {"type": 'UP_ARROW', "value": 'PRESS', "repeat": True}, None),
("armature.select_less", {"type": 'DOWN_ARROW', "value": 'PRESS', "repeat": True}, None),
("armature.select_similar", {"type": 'G', "value": 'PRESS', "shift": True}, None),
("armature.select_linked_pick",{"type": 'RIGHT_BRACKET', "value": 'PRESS'},{"properties":[("deselect", False),],},),
("armature.shortest_path_pick", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True, "ctrl": True}, None),
("wm.call_menu",{"type": 'DEL', "value": 'PRESS'},{"properties":[("name", 'VIEW3D_MT_edit_armature_delete'),],},),
("wm.call_menu",{"type": 'BACK_SPACE', "value": 'PRESS'},{"properties":[("name", 'VIEW3D_MT_edit_armature_delete'),],},),
("armature.duplicate_move", {"type": 'D', "value": 'PRESS', "ctrl": True}, None),
("armature.dissolve", {"type": 'BACK_SPACE', "value": 'PRESS', "ctrl": True}, None),
("armature.dissolve", {"type": 'DEL', "value": 'PRESS', "ctrl": True}, None),
("wm.call_menu",{"type": 'RIGHTMOUSE', "value": 'PRESS'},{"properties":[("name", 'VIEW3D_MT_armature_context_menu'),],},),
("wm.call_menu",{"type": 'APP', "value": 'PRESS'},{"properties":[("name", 'VIEW3D_MT_armature_context_menu'),],},),
("wm.tool_set_by_id",{"type": 'Q', "value": 'PRESS'},{"properties":[("name", 'builtin.select_box'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'W', "value": 'PRESS'},{"properties":[("name", 'builtin.move'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'E', "value": 'PRESS'},{"properties":[("name", 'builtin.rotate'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'R', "value": 'PRESS'},{"properties":[("name", 'builtin.scale'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'T', "value": 'PRESS'},{"properties":[("name", 'builtin.transform'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'D', "value": 'PRESS'},{"properties":[("name", 'builtin.annotate'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'M', "value": 'PRESS'},{"properties":[("name", 'builtin.measure'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'C', "value": 'PRESS'},{"properties":[("name", 'builtin.cursor'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'Y', "value": 'PRESS'},{"properties":[("name", 'builtin.roll'),("cycle", True),],},),
("wm.tool_set_by_id",{"type": 'E', "value": 'PRESS', "ctrl": True},{"properties":[("name", 'builtin.extrude'),("cycle", True),],},),],},),
#########
# BEVEL #
#########
("Bevel Modal Map",
{"space_type": 'EMPTY', "region_type": 'WINDOW', "modal": True},
{"items":
[("CANCEL", {"type": 'ESC', "value": 'PRESS', "any": True, "repeat": True}, None),
("CANCEL", {"type": 'RIGHTMOUSE', "value": 'PRESS', "any": True}, None),
("CONFIRM", {"type": 'RET', "value": 'PRESS', "any": True, "repeat": True}, None),
("CONFIRM", {"type": 'NUMPAD_ENTER', "value": 'PRESS', "any": True, "repeat": True}, None),
("CONFIRM", {"type": 'LEFTMOUSE', "value": 'PRESS', "any": True}, None),
("VALUE_OFFSET", {"type": 'A', "value": 'PRESS', "any": True, "repeat": True}, None),
("VALUE_PROFILE", {"type": 'P', "value": 'PRESS', "any": True, "repeat": True}, None),
("VALUE_SEGMENTS", {"type": 'S', "value": 'PRESS', "any": True, "repeat": True}, None),
("SEGMENTS_UP", {"type": 'WHEELUPMOUSE', "value": 'PRESS', "any": True}, None),
("SEGMENTS_UP", {"type": 'NUMPAD_PLUS', "value": 'PRESS', "any": True, "repeat": True}, None),
("SEGMENTS_DOWN", {"type": 'WHEELDOWNMOUSE', "value": 'PRESS', "any": True}, None),
("SEGMENTS_DOWN", {"type": 'NUMPAD_MINUS', "value": 'PRESS', "any": True, "repeat": True}, None),
("OFFSET_MODE_CHANGE", {"type": 'M', "value": 'PRESS', "any": True, "repeat": True}, None),
("CLAMP_OVERLAP_TOGGLE", {"type": 'C', "value": 'PRESS', "any": True, "repeat": True}, None),
("AFFECT_CHANGE", {"type": 'V', "value": 'PRESS', "any": True, "repeat": True}, None),
("HARDEN_NORMALS_TOGGLE", {"type": 'H', "value": 'PRESS', "any": True, "repeat": True}, None),
("MARK_SEAM_TOGGLE", {"type": 'U', "value": 'PRESS', "any": True, "repeat": True}, None),
("MARK_SHARP_TOGGLE", {"type": 'K', "value": 'PRESS', "any": True, "repeat": True}, None),
("OUTER_MITER_CHANGE", {"type": 'O', "value": 'PRESS', "any": True, "repeat": True}, None),
("INNER_MITER_CHANGE", {"type": 'I', "value": 'PRESS', "any": True, "repeat": True}, None),
("PROFILE_TYPE_CHANGE", {"type": 'Z', "value": 'PRESS', "any": True, "repeat": True}, None),
("VERTEX_MESH_CHANGE", {"type": 'N', "value": 'PRESS', "any": True, "repeat": True}, None), ],},),
###############
# CLIP EDITOR #
###############
("Clip",
{"space_type": 'CLIP_EDITOR', "region_type": 'WINDOW'},
{"items":
[("wm.call_panel", {"type": 'RET', "value": 'PRESS', "repeat": True}, {"properties":[("name", 'TOPBAR_PT_name'),("keep_open", False),],}, ),
("wm.search_menu", {"type": 'TAB', "value": 'PRESS', "repeat": True}, None),
("clip.open", {"type": 'O', "value": 'PRESS', "alt": True, "repeat": True}, None),
("clip.track_markers", {"type": 'LEFT_ARROW', "value": 'PRESS', "alt": True, "repeat": True}, {"properties":[("backwards", True),("sequence", False),],}, ),
("clip.track_markers", {"type": 'RIGHT_ARROW', "value": 'PRESS', "alt": True, "repeat": True}, {"properties":[("backwards", False),("sequence", False),],}, ),
("clip.track_markers", {"type": 'T', "value": 'PRESS', "ctrl": True, "repeat": True}, {"properties":[("backwards", False),("sequence", True),],}, ),
("clip.track_markers", {"type": 'T', "value": 'PRESS', "shift": True, "ctrl": True, "repeat": True}, {"properties":[("backwards", True),("sequence", True),],}, ),
("wm.context_toggle_enum", {"type": 'TAB', "value": 'PRESS', "repeat": True},{"properties":[("data_path", 'space_data.mode'),("value_1", 'TRACKING'),("value_2", 'MASK'),],},),
("clip.solve_camera", {"type": 'S', "value": 'PRESS', "shift": True, "repeat": True}, None),
("clip.prefetch", {"type": 'P', "value": 'PRESS', "repeat": True}, None),],},),
("Clip Dopesheet Editor",
{"space_type": 'CLIP_EDITOR', "region_type": 'WINDOW'},
{"items":
[("wm.search_menu", {"type": 'TAB', "value": 'PRESS', "repeat": True}, None),
("clip.dopesheet_select_channel",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties":[("extend", True),],},),
("clip.dopesheet_view_all", {"type": 'HOME', "value": 'PRESS', "repeat": True}, None),
("clip.dopesheet_view_all", {"type": 'NDOF_BUTTON_FIT', "value": 'PRESS'}, None),],},),
("Clip Editor",
{"space_type": 'CLIP_EDITOR', "region_type": 'WINDOW'},
{"items":
[("wm.search_menu", {"type": 'TAB', "value": 'PRESS', "repeat": True}, None),
("clip.view_pan", {"type": 'MIDDLEMOUSE', "value": 'PRESS'}, None),
("clip.view_pan", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "shift": True}, None),
("clip.view_pan", {"type": 'TRACKPADPAN', "value": 'ANY'}, None),
("clip.view_zoom", {"type": 'MIDDLEMOUSE', "value": 'PRESS', "ctrl": True}, None),
("clip.view_zoom", {"type": 'TRACKPADZOOM', "value": 'ANY'}, None),
("clip.view_zoom", {"type": 'TRACKPADPAN', "value": 'ANY', "ctrl": True}, None),
("clip.view_zoom_in", {"type": 'WHEELINMOUSE', "value": 'PRESS'}, None),
("clip.view_zoom_out", {"type": 'WHEELOUTMOUSE', "value": 'PRESS'}, None),
("clip.view_zoom_in", {"type": 'WHEELINMOUSE', "value": 'PRESS', "alt": True}, None),
("clip.view_zoom_out", {"type": 'WHEELOUTMOUSE', "value": 'PRESS', "alt": True}, None),
("clip.view_zoom_in", {"type": 'NUMPAD_PLUS', "value": 'PRESS', "repeat": True}, None),
("clip.view_zoom_out", {"type": 'NUMPAD_MINUS', "value": 'PRESS', "repeat": True}, None),
("clip.view_zoom_ratio",{"type": 'NUMPAD_8', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties":[("ratio", 8.0),],},),
("clip.view_zoom_ratio",{"type": 'NUMPAD_4', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties":[("ratio", 4.0),],},),
("clip.view_zoom_ratio",{"type": 'NUMPAD_2', "value": 'PRESS', "ctrl": True, "repeat": True},{"properties": [("ratio", 2.0),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_8', "value": 'PRESS', "shift": True, "repeat": True},{"properties": [("ratio", 8.0),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_4', "value": 'PRESS', "shift": True, "repeat": True},{"properties": [("ratio", 4.0),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_2', "value": 'PRESS', "shift": True, "repeat": True},{"properties": [("ratio", 2.0),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_1', "value": 'PRESS', "repeat": True},{"properties": [("ratio", 1.0),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_2', "value": 'PRESS', "repeat": True},{"properties": [("ratio", 0.5),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_4', "value": 'PRESS', "repeat": True},{"properties": [("ratio", 0.25),], },),
("clip.view_zoom_ratio",{"type": 'NUMPAD_8', "value": 'PRESS', "repeat": True},{"properties": [("ratio", 0.125),], },),
("clip.view_all", {"type": 'A', "value": 'PRESS', "repeat": True}, None),
("clip.view_selected", {"type": 'F', "value": 'PRESS', "repeat": True}, None),
("clip.view_all", {"type": 'NDOF_BUTTON_FIT', "value": 'PRESS'}, None),
("clip.view_ndof", {"type": 'NDOF_MOTION', "value": 'ANY'}, None),
("clip.frame_jump",{"type": 'LEFT_ARROW', "value": 'PRESS', "shift": True, "ctrl": True, "repeat": True},{"properties": [("position", 'PATHSTART'),], },),
("clip.frame_jump",{"type": 'RIGHT_ARROW', "value": 'PRESS', "shift": True, "ctrl": True, "repeat": True},{"properties": [("position", 'PATHEND'),], },),
("clip.frame_jump",{"type": 'LEFT_ARROW', "value": 'PRESS', "shift": True, "alt": True, "repeat": True},{"properties": [("position", 'FAILEDPREV'),], },),
("clip.frame_jump",{"type": 'RIGHT_ARROW', "value": 'PRESS', "shift": True, "alt": True, "repeat": True},{"properties": [("position", 'PATHSTART'),], },),
("clip.change_frame", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
("clip.select",{"type": 'LEFTMOUSE', "value": 'PRESS'},{"properties": [("extend", False),("deselect_all", True),], },),