| 67 | } |
| 68 | |
| 69 | void Character::draw() const |
| 70 | { |
| 71 | gl::color( mColorCur ); |
| 72 | |
| 73 | gl::ScopedModelMatrix matScope; |
| 74 | |
| 75 | mat4 m = mMatrix() * scale( vec3( 1, -1, 1 ) ); |
| 76 | gl::multModelMatrix( m ); |
| 77 | |
| 78 | mTextureFont->drawString( mChar, mKernBounds.getCenter() - vec2( mKernBounds.getWidth(), 0.0f ) ); |
| 79 | } |
nothing calls this directly
no test coverage detected