├── .gitignore ├── LICENSE ├── README.md ├── addons └── tool_button │ ├── TB_Button.gd │ ├── TB_InspectorPlugin.gd │ ├── TB_Plugin.gd │ └── plugin.cfg └── readme ├── .gdignore ├── bottom_buttons.png ├── logo.png ├── preview2.png └── preview3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/README.md -------------------------------------------------------------------------------- /addons/tool_button/TB_Button.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/addons/tool_button/TB_Button.gd -------------------------------------------------------------------------------- /addons/tool_button/TB_InspectorPlugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/addons/tool_button/TB_InspectorPlugin.gd -------------------------------------------------------------------------------- /addons/tool_button/TB_Plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/addons/tool_button/TB_Plugin.gd -------------------------------------------------------------------------------- /addons/tool_button/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/addons/tool_button/plugin.cfg -------------------------------------------------------------------------------- /readme/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /readme/bottom_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/readme/bottom_buttons.png -------------------------------------------------------------------------------- /readme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/readme/logo.png -------------------------------------------------------------------------------- /readme/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/readme/preview2.png -------------------------------------------------------------------------------- /readme/preview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teebarjunk/godot-4.0-tool_button/HEAD/readme/preview3.png --------------------------------------------------------------------------------