Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 15, 2005, 1:49:17 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some 2d-adaptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2d-recalc/src/lib/graphics/text_engine/text.h

    r5378 r5380  
    5555  public:
    5656    Text(const char* fontFile, unsigned int fontSize = TEXT_DEFAULT_SIZE, TEXT_RENDER_TYPE type = TEXT_RENDER_DYNAMIC);
     57    Text(const char* fontFile, float fontSize);
    5758    ~Text();
    5859    void init();
     
    6970    void setColor(float r, float g, float b) { this->color = Vector(r, g, b); };
    7071    /** sets the Size of the Font */
    71     void setSize(float size) { this->size = size; };
    72     /** @returns the Size of the Text */
    73 //    void getSize(float &x, float& y) const { return this->size; };
     72    inline void setTextSize(unsigned int size) { this->setSizeY2Dpx(size); };
    7473
    7574    void setType(TEXT_RENDER_TYPE type);
     
    9291    Vector            color;          //!< The color of the font.
    9392    float             blending;       //!< The blending intensity.
    94     float             size;           //!< The size of the Font.
    9593
    9694  // placement in openGL
Note: See TracChangeset for help on using the changeset viewer.