axmol/extensions/Inspector
RH 9f8962d47d
Change extension folder structure to reduce file name conflicts (#1647)
* Restructure extension folder structure to reduce conflicts with project source files

* Do not include SDFGen headers for Android builds

* Ensure correct paths are included for the relevant targets

* ImGui is not be enabled for WinUWP, tvOS and iOS

* Fix LUA auto binding generator to work with updated extension folder structure

* Fix path and linker issues for yasio when using prebuilt option
Set correct paths to extensions for prebuilt option
2024-02-03 10:08:22 +08:00
..
src/Inspector Change extension folder structure to reduce file name conflicts (#1647) 2024-02-03 10:08:22 +08:00
CMakeLists.txt Change extension folder structure to reduce file name conflicts (#1647) 2024-02-03 10:08:22 +08:00
README.md Add extension Inspector (Experimental) (#1324) 2023-09-12 01:06:28 +08:00

README.md

Inspector

(Experimental)

  • Visualize node tree in real time
  • Edit node properties

Usage

call openForScene(ax::Scene*) in your onEnter overload and close in your onExit overload. Dont forget to call Scene methods.

#include "Inspector/Inspector.h"

class MyScene : public ax::Scene {
        virtual void onEnter() override {
        ax::Scene::onEnter();
        ax::extension::Inspector::getInstance()->openForScene(this);
    }
    virtual void onExit() override {
        ax::extension::Inspector::getInstance()->close();
        ax::Scene::onExit();
    }
};