mirror of https://github.com/axmolengine/axmol.git
9b4a7b1446
Merge pull request #739 from axis-project/migrate-engine-test-extension-config Migrate tests, extensions and configs |
||
---|---|---|
.. | ||
imgui | ||
CMakeLists.txt | ||
ImGuiPresenter.cpp | ||
ImGuiPresenter.h | ||
LICENSE | ||
README.md | ||
imgui_impl_axis.cpp | ||
imgui_impl_axis.h |
README.md
The ImGui extension for axis
Sync from https://github.com/Xrysnow/cocos2d-x-imgui and do a little changes
Improvements
- Simplify API, use add/remove renderLoop present ImGui GUI widgets
- Optimize call pipeline flow, support add/remove Node to Scene at ImGui render loop without container iterator damage
- Calculate deltaTime at
ImGui_ImplCocos2dx_NewFrame
to avoid error whencc.Director
paused - Refine
Init/Shutdown
, Restore all callbacks for glfw to solve recreateImGuiPresenter
instance support - Use
FOURCC
for key of ImGui render loop - Add dpi scale support, use
ImGuiPresenter::getInstance()->scaleAllByDPI(1.0);
- Easy font manager, stable API
addFont,removeFont,clearFonts
to manage ImGui fonts, with ImGui API, very hard to do correctly.
How to use
#include "ImGui/ImGuiPresenter.h"
USING_NS_CC;
USING_NS_CC_EXT;
class GameScene : public Scene {
public:
void onEnter() override
{
Scene::onEnter();
ImGuiPresenter::getInstance()->addFont(R"(C:\Windows\Fonts\msyh.ttc)");
/* For Simplified Chinese support, please use:
ImGuiPresenter::getInstance()->addFont(R"(C:\Windows\Fonts\msyh.ttc)", ImGuiPresenter::DEFAULT_FONT_SIZE,
ImGuiPresenter::CHS_GLYPH_RANGE::GENERAL);
*/
ImGuiPresenter::getInstance()->addRenderLoop("#im01", CC_CALLBACK_0(GameScene::onImGuiDraw, this), this);
}
void onExit() override
{
Scene::onExit();
ImGuiPresenter::getInstance()->removeRenderLoop("#im01");
}
void onImGuiDraw()
{
ImGui::Begin("window");
ImGui::Text("FPS=%.1f", 1.f / ImGui::GetIO().DeltaTime);
ImGui::End();
}
}
More about use imgui widgets, please see: https://github.com/ocornut/imgui
Tested devices
- win32
- macOS
Known issues
- Can't enable muti-viewports on macOS, so we disable this feature for macOS.