├── .gitattributes ├── .gitignore ├── .idea └── .idea.Developer Console │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ └── indexLayout.xml ├── Demo ├── circle.cs ├── circle.png ├── circle.png.import ├── cross.cs ├── cross.png ├── cross.png.import ├── demo.tscn ├── square.cs ├── square.png ├── square.png.import ├── triangle.cs ├── triangle.png └── triangle.png.import ├── Developer Console 1.0b.zip ├── Developer Console.csproj ├── Developer Console.sln ├── MyCustomCommands.cs ├── NonStaticCommandTest.cs ├── README.md ├── addons └── Developer Console │ ├── Attributes │ └── ConsoleCommandAttribute.cs │ ├── Color Theme │ └── DCColorTheme.cs │ ├── Command Interpreter │ ├── CommandInterpreter.cs │ └── Shortcuts │ │ ├── ChangeContext.cs │ │ ├── Help.cs │ │ └── Shortcuts.cs │ ├── Console Commands │ ├── Application.cs │ ├── Command.cs │ ├── Console Output.cs │ ├── ConsoleCommand.cs │ ├── Context.cs │ ├── Display.cs │ ├── Engine.cs │ ├── Level.cs │ ├── Math.cs │ ├── Nodes.cs │ ├── Prefab.cs │ └── Resources.cs │ ├── ConsoleCamera.cs │ ├── DC.cs │ ├── DCCrosshair.cs │ ├── DCDelegates.cs │ ├── DCExtensions.cs │ ├── DeveloperConsole.tscn │ ├── Exceptions │ ├── DCException.cs │ ├── DCInvalidCommandException.cs │ ├── DCInvalidParameterFormatException.cs │ ├── DCParameterMismatchException.cs │ └── DCParseFailureException.cs │ ├── Icons │ ├── GuiVisibilityHidden.svg │ ├── GuiVisibilityHidden.svg.import │ ├── GuiVisibilityVisible.svg │ └── GuiVisibilityVisible.svg.import │ ├── Interface │ ├── ICanInitialize.cs │ └── ICanReset.cs │ ├── License.cs │ ├── License.txt │ ├── ResourcePaths.cs │ ├── Scene Composer │ ├── ICompositionCommand.cs │ ├── ReparentCommand.cs │ ├── SceneComposer.cs │ └── SetInvisibleCommand.cs │ └── UI │ ├── Command Prompt │ ├── UIAutocompleteController.cs │ ├── UICommandInput.cs │ ├── UIContextLabel.cs │ ├── UIDescriptionLabel.cs │ └── UIModeToggle.cs │ ├── Crosshair │ ├── UICommandTree.cs │ ├── UIContextTree.cs │ ├── UICrosshairOutputLabel.cs │ ├── UICrosshairViewer.cs │ └── UIMousePositionLabel.cs │ ├── DCCrosshairUI.cs │ ├── DeveloperConsoleUI.cs │ └── Terminal │ └── UITerminalOutput.cs ├── control.tscn ├── export_presets.cfg ├── icon.svg ├── icon.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /.idea/.idea.Developer Console/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/.idea/.idea.Developer Console/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.Developer Console/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/.idea/.idea.Developer Console/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.Developer Console/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/.idea/.idea.Developer Console/.idea/indexLayout.xml -------------------------------------------------------------------------------- /Demo/circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/circle.cs -------------------------------------------------------------------------------- /Demo/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/circle.png -------------------------------------------------------------------------------- /Demo/circle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/circle.png.import -------------------------------------------------------------------------------- /Demo/cross.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/cross.cs -------------------------------------------------------------------------------- /Demo/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/cross.png -------------------------------------------------------------------------------- /Demo/cross.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/cross.png.import -------------------------------------------------------------------------------- /Demo/demo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/demo.tscn -------------------------------------------------------------------------------- /Demo/square.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/square.cs -------------------------------------------------------------------------------- /Demo/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/square.png -------------------------------------------------------------------------------- /Demo/square.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/square.png.import -------------------------------------------------------------------------------- /Demo/triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/triangle.cs -------------------------------------------------------------------------------- /Demo/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/triangle.png -------------------------------------------------------------------------------- /Demo/triangle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Demo/triangle.png.import -------------------------------------------------------------------------------- /Developer Console 1.0b.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Developer Console 1.0b.zip -------------------------------------------------------------------------------- /Developer Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Developer Console.csproj -------------------------------------------------------------------------------- /Developer Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/Developer Console.sln -------------------------------------------------------------------------------- /MyCustomCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/MyCustomCommands.cs -------------------------------------------------------------------------------- /NonStaticCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/NonStaticCommandTest.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/README.md -------------------------------------------------------------------------------- /addons/Developer Console/Attributes/ConsoleCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Attributes/ConsoleCommandAttribute.cs -------------------------------------------------------------------------------- /addons/Developer Console/Color Theme/DCColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Color Theme/DCColorTheme.cs -------------------------------------------------------------------------------- /addons/Developer Console/Command Interpreter/CommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Command Interpreter/CommandInterpreter.cs -------------------------------------------------------------------------------- /addons/Developer Console/Command Interpreter/Shortcuts/ChangeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Command Interpreter/Shortcuts/ChangeContext.cs -------------------------------------------------------------------------------- /addons/Developer Console/Command Interpreter/Shortcuts/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Command Interpreter/Shortcuts/Help.cs -------------------------------------------------------------------------------- /addons/Developer Console/Command Interpreter/Shortcuts/Shortcuts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Command Interpreter/Shortcuts/Shortcuts.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Application.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Command.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Console Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Console Output.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/ConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/ConsoleCommand.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Context.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Display.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Engine.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Level.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Math.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Nodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Nodes.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Prefab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Prefab.cs -------------------------------------------------------------------------------- /addons/Developer Console/Console Commands/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Console Commands/Resources.cs -------------------------------------------------------------------------------- /addons/Developer Console/ConsoleCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/ConsoleCamera.cs -------------------------------------------------------------------------------- /addons/Developer Console/DC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/DC.cs -------------------------------------------------------------------------------- /addons/Developer Console/DCCrosshair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/DCCrosshair.cs -------------------------------------------------------------------------------- /addons/Developer Console/DCDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/DCDelegates.cs -------------------------------------------------------------------------------- /addons/Developer Console/DCExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/DCExtensions.cs -------------------------------------------------------------------------------- /addons/Developer Console/DeveloperConsole.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/DeveloperConsole.tscn -------------------------------------------------------------------------------- /addons/Developer Console/Exceptions/DCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Exceptions/DCException.cs -------------------------------------------------------------------------------- /addons/Developer Console/Exceptions/DCInvalidCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Exceptions/DCInvalidCommandException.cs -------------------------------------------------------------------------------- /addons/Developer Console/Exceptions/DCInvalidParameterFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Exceptions/DCInvalidParameterFormatException.cs -------------------------------------------------------------------------------- /addons/Developer Console/Exceptions/DCParameterMismatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Exceptions/DCParameterMismatchException.cs -------------------------------------------------------------------------------- /addons/Developer Console/Exceptions/DCParseFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Exceptions/DCParseFailureException.cs -------------------------------------------------------------------------------- /addons/Developer Console/Icons/GuiVisibilityHidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Icons/GuiVisibilityHidden.svg -------------------------------------------------------------------------------- /addons/Developer Console/Icons/GuiVisibilityHidden.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Icons/GuiVisibilityHidden.svg.import -------------------------------------------------------------------------------- /addons/Developer Console/Icons/GuiVisibilityVisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Icons/GuiVisibilityVisible.svg -------------------------------------------------------------------------------- /addons/Developer Console/Icons/GuiVisibilityVisible.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Icons/GuiVisibilityVisible.svg.import -------------------------------------------------------------------------------- /addons/Developer Console/Interface/ICanInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Interface/ICanInitialize.cs -------------------------------------------------------------------------------- /addons/Developer Console/Interface/ICanReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Interface/ICanReset.cs -------------------------------------------------------------------------------- /addons/Developer Console/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/License.cs -------------------------------------------------------------------------------- /addons/Developer Console/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/License.txt -------------------------------------------------------------------------------- /addons/Developer Console/ResourcePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/ResourcePaths.cs -------------------------------------------------------------------------------- /addons/Developer Console/Scene Composer/ICompositionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Scene Composer/ICompositionCommand.cs -------------------------------------------------------------------------------- /addons/Developer Console/Scene Composer/ReparentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Scene Composer/ReparentCommand.cs -------------------------------------------------------------------------------- /addons/Developer Console/Scene Composer/SceneComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Scene Composer/SceneComposer.cs -------------------------------------------------------------------------------- /addons/Developer Console/Scene Composer/SetInvisibleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/Scene Composer/SetInvisibleCommand.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Command Prompt/UIAutocompleteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Command Prompt/UIAutocompleteController.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Command Prompt/UICommandInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Command Prompt/UICommandInput.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Command Prompt/UIContextLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Command Prompt/UIContextLabel.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Command Prompt/UIDescriptionLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Command Prompt/UIDescriptionLabel.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Command Prompt/UIModeToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Command Prompt/UIModeToggle.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Crosshair/UICommandTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Crosshair/UICommandTree.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Crosshair/UIContextTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Crosshair/UIContextTree.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Crosshair/UICrosshairOutputLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Crosshair/UICrosshairOutputLabel.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Crosshair/UICrosshairViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Crosshair/UICrosshairViewer.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Crosshair/UIMousePositionLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Crosshair/UIMousePositionLabel.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/DCCrosshairUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/DCCrosshairUI.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/DeveloperConsoleUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/DeveloperConsoleUI.cs -------------------------------------------------------------------------------- /addons/Developer Console/UI/Terminal/UITerminalOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/addons/Developer Console/UI/Terminal/UITerminalOutput.cs -------------------------------------------------------------------------------- /control.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/control.tscn -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsterbyte/Godot-.NET-4x-Developer-Console/HEAD/project.godot --------------------------------------------------------------------------------