INNER CODE UNIT · Python
RightMouseNavigationPreferences
SpectralVectors/RightMouseNavigation · preferences.py:99
class RightMouseNavigationPreferences(AddonPreferences):
bl_idname = __package__
navigation_mode: EnumProperty(
name="Navigation Mode",
description="Choose how right-click drag navigates the viewport",
items=[
(
"WALK",
"Walk",
"First-person walk navigation (default Blender behavior)",
),
(
"ORBIT",
"Orbit",
"Orbit around view center (like middle-mouse-button)",
),
],