Browse Source

Update README and instructions in example

master
Krisjanis Rijnieks 11 years ago
parent
commit
2596c9c1b6
  1. 11
      README.md
  2. 5
      example/src/ofApp.cpp

11
README.md

@ -36,10 +36,13 @@ None so far.
Version history
------------
### Version 0.1.3:
- Add sources view (for selected surface)
- Select image sources
- Save and load composition
### Version 0.1.3 (2014-05-16):
- Added sources view (for selected surface)
- Added possibility to select image sources
- Save and load surfaces with image sources
- Joint and surface movement using arrow keys
- Added fullscreen toggle
- Adjusted the example to work with new changes
### Version 0.1.2 (2014-05-12):
Restructured GUI mechanism for flexibility later.

5
example/src/ofApp.cpp

@ -47,12 +47,15 @@ void ofApp::draw()
if ( bShowInfo ) {
// Draw instructions
stringstream ss;
ss << "There are 3 modes:\n\n";
ss << "There are 4 modes:\n\n";
ss << " 1. Presentation mode\n";
ss << " 2. Texture mapping mode\n";
ss << " 3. Projection mapping mode\n";
ss << " 4. Source selection mode\n\n";
ss << "You can switch between the modes by using <1>, <2>, <3> and <4> keys on the keyboard.\n\n";
ss << "Press <r> or <n> to add random or normal surface.\n";
ss << "Press <s> to save the composition.\n";
ss << "Press <f> to toggle fullscreen.\n";
ss << "Hit <i> to hide this message.";
ofDrawBitmapStringHighlight(ss.str(), 10, 20, ofColor(0,0,0,100), ofColor(255,255,255,200));

Loading…
Cancel
Save