work: restore shift+spacebar for media play/pause

maybe put in maya config? idk what funiman's preference is
This commit is contained in:
Nathan
2026-05-29 14:58:59 -06:00
parent 2f8e5f472f
commit 6c3b78075b
130 changed files with 10461 additions and 19696 deletions
@@ -0,0 +1,15 @@
# SPDX-FileCopyrightText: 2026 Blender Authors
# SPDX-License-Identifier: GPL-3.0-or-later
"""BAT v2 support for Flamenco.
NOTE: This module uses late imports to avoid importing BAT v2 until it's really
necessary. Functions should _only_ be called from Blender 5.1+ (Python 3.13+),
as BAT uses language features that were not available in 5.0 (Python 3.11).
"""
def bat_version() -> str:
from .submodules import bat_toplevel
return bat_toplevel.__version__