| 1234567891011121314151617181920212223242526 |
- #include "BsPrerequisites.h"
- #include "BsGUIWidget.h"
- namespace CamelotFramework
- {
- class TestTextSprite : public BansheeEngine::GUIWidget
- {
- protected:
- friend class CM::SceneObject;
- TestTextSprite(const HSceneObject& parent, CM::Viewport* target);
- public:
- ~TestTextSprite();
- virtual void update();
- void init(const BS::HCamera& camera, const String& text, CM::RenderTexturePtr sceneView);
- private:
- BS::GUILabel* mLabel;
- BS::GUIListBox* mListBox;
- HString labelString;
- void dbgBtn();
- };
- }
|