db&w documentation wiki

finest software | finest docs

User Tools

Site Tools


vai:shortcuts

Keyboard shortcuts

The keyboard shortcuts can be edited in the Preferences.

Shortcuts trigger a Lua script function which in turn executes the desired operation.

This is a list of the default shortcuts:

Shortcut Function Lua Command
Global
alt-pOpen Preferencesvai.prefs()
ctrl-oOpen Filevai.open()
ctrl-alt-aAboutvai.about()
F11
Alt-Return
Toggle full screenvai.toggle_fullscreen()
View Navigation
numpad-1Front viewview.front()
ctrl-numpad-1Back viewview.back()
numpad-2Rotate downview.tumble(0, -30)
numpad-3Right Viewview.right()
ctrl-numpad-3Left Viewview.left()
numpad-4Rotate leftview.tumble(30, 0)
numpad-5Toggle Perspective/Orthogonalview.toggle_ortho()
numpad-6Rotate rightview.tumble(-30, 0)
numpad-7Top Viewview.top()
ctrl-numpad-7Bottom Viewview.bottom()
numpad-8Rotate Upview.tumble(0, 30)
numpad-9Flip view directionview.flip()
numpad-+Zoom inview.zoom(0.95)
numpad–Zoom outview.zoom(1.05)
View Playback
spacePlay/Pause animationview.play.set(not view.play.get())
ctrl-spaceStop animationview.play(false)
Next frameview.frame.step(1)
Previous frameview.frame.step(-1)
Ctrl - →Skip frames forwardview.frame.step(25)
Ctrl- ←Skip Frames backwardsview.frame.step(-25)
tToggle timelineview.timeline.set(not view.timeline.get())
gGoto Frameview.frame.go()
View
1Change USD view complexityview.complexity(1.0)
2Change USD view complexityview.complexity(1.0)
3Change USD view complexityview.complexity(1.0)
4Change USD view complexityview.complexity(1.0)
AIncrement A/B modeval = view.ab.get() + 1
if val > 2 then val = 0 end
view.ab.set(val)
bToggle bonesview.bones.set(not view.bones.get())
hToggle HuDview.hud.set(not view.hud.get())
pToggle Propertiesview.props.set(not view.props.get())
ctrl-cCopy viewport as imageview.clipboard_copy()
View Turntable
rToggle turntableview.turntable.set(not view.turntable.get())
ctrl-shift-rFlip turntableview.turntable.speed.flip()
ctrl-rSlow down turntableview.turntable.set(view.turntable.get() * 0.9)
shift-rSpeed up turntableview.turntable.set(view.turntable.get() * 1.1)
vai/shortcuts.txt · Last modified: by lightwolf