Browse Source

Add mapper.duplicateSurface() shortcut

master
Krisjanis Rijnieks 8 years ago
parent
commit
b463d9e255
  1. 2
      example-custom-shortcuts/src/ofApp.cpp

2
example-custom-shortcuts/src/ofApp.cpp

@ -44,6 +44,8 @@ void ofApp::keyPressed(int key){
mapper.selectNextSurface();
}else if(key == 'j'){
mapper.selectPrevSurface();
}else if(key == 'd'){
mapper.duplicateSurface();
}else if(key == 'l'){
mapper.selectNextVertex();
}else if(key == 'h'){

Loading…
Cancel
Save