- $#include "Font.h"
- class Font : public Resource
- {
- void SetAbsoluteGlyphOffset(const IntVector2& offset);
- void SetScaledGlyphOffset(const Vector2& offset);
-
- const IntVector2& GetAbsoluteGlyphOffset() const;
- const Vector2& GetScaledGlyphOffset() const;
- IntVector2 GetTotalGlyphOffset(int pointSize) const;
- bool IsSDFFont() const;
-
- tolua_property__get_set IntVector2 absoluteGlyphOffset;
- tolua_property__get_set Vector2 scaledGlyphOffset;
- };
|