Differential D9227 Diff 30199 release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
| Show First 20 Lines • Show All 2,133 Lines • ▼ Show 20 Lines | def km_frames(params): | ||||
| ) | ) | ||||
| items.extend([ | items.extend([ | ||||
| # Frame offsets | # Frame offsets | ||||
| ("screen.frame_jump", {"type": 'MEDIA_LAST', "value": 'PRESS'}, | ("screen.frame_jump", {"type": 'MEDIA_LAST', "value": 'PRESS'}, | ||||
| {"properties": [("end", True)]}), | {"properties": [("end", True)]}), | ||||
| ("screen.frame_jump", {"type": 'MEDIA_FIRST', "value": 'PRESS'}, | ("screen.frame_jump", {"type": 'MEDIA_FIRST', "value": 'PRESS'}, | ||||
| {"properties": [("end", False)]}), | {"properties": [("end", False)]}), | ||||
| ("screen.animation_play", {"type": 'SPACE', "value": 'PRESS'}, None), | ("screen.animation_play", {"type": 'SPACE', "value": 'PRESS', "repeat": False}, None), | ||||
| ("screen.animation_cancel", {"type": 'ESC', "value": 'PRESS'}, None), | ("screen.animation_cancel", {"type": 'ESC', "value": 'PRESS'}, None), | ||||
| ("screen.animation_play", {"type": 'MEDIA_PLAY', "value": 'PRESS'}, None), | ("screen.animation_play", {"type": 'MEDIA_PLAY', "value": 'PRESS'}, None), | ||||
| ("screen.animation_cancel", {"type": 'MEDIA_STOP', "value": 'PRESS'}, None), | ("screen.animation_cancel", {"type": 'MEDIA_STOP', "value": 'PRESS'}, None), | ||||
| ]) | ]) | ||||
| return keymap | return keymap | ||||
| ▲ Show 20 Lines • Show All 2,017 Lines • Show Last 20 Lines | |||||