|
@ -23,6 +23,7 @@ void TextureMappingState::onKeyPressed(Application * app, ofKeyEventArgs & args) |
|
|
app->getCmdManager()->exec( |
|
|
app->getCmdManager()->exec( |
|
|
new SelNextTexCoordCmd(app->getGui()->getTextureEditor())); |
|
|
new SelNextTexCoordCmd(app->getGui()->getTextureEditor())); |
|
|
break; |
|
|
break; |
|
|
|
|
|
|
|
|
case '<': |
|
|
case '<': |
|
|
app->getCmdManager()->exec( |
|
|
app->getCmdManager()->exec( |
|
|
new SelPrevTexCoordCmd(app->getGui()->getTextureEditor())); |
|
|
new SelPrevTexCoordCmd(app->getGui()->getTextureEditor())); |
|
@ -32,6 +33,13 @@ void TextureMappingState::onKeyPressed(Application * app, ofKeyEventArgs & args) |
|
|
app->getCmdManager()->exec( |
|
|
app->getCmdManager()->exec( |
|
|
new DeselectTexCoordCmd(app->getGui()->getTextureEditor())); |
|
|
new DeselectTexCoordCmd(app->getGui()->getTextureEditor())); |
|
|
break; |
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
case OF_KEY_TAB: |
|
|
|
|
|
app->getCmdManager()->exec( |
|
|
|
|
|
new SetNextSourceCmd( |
|
|
|
|
|
app->getSurfaceManager()->getSelectedSurface(), |
|
|
|
|
|
app->getGui()->getSourcesEditor())); |
|
|
|
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|