Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Only the "console" folder is neededFull documentation/wiki/usage/changlog on:- https://github.com/cobrapitz/LinuxLikeConsole Features:- Auto completion / suggestion- Custom commands- Custom Channels (Default only 'All' Channel)- Custom/built in themes (arch theme, ubuntu theme, windows, light, dark, text_only)- Built in commands like -> man, tree, ls, cd, help, alias, setDock, clear, ...- Predefined and runtime forwarded parameters (runtime forwarding is prioritized)- Easy BBcode support (like: [b]this is bold[/b])- Logging- Dragable console- Slide in animation- User rights (to restrict the usage of developer only commands)- Additional Visual and Logging functions (warn, error, sucess )
LinuxLikeConsole (v3.0)
Linux Like Console written in gdscript for Godot (Game Engine)
For additional features or problems just write an issue or Discord cobrapitz#2872
toggle with: key above tab
Showcase
Wiki
Changelog
Features:
- Auto completion / suggestion
- Custom commands
- (NEW) Custom Channels (Default only 'All' Channel)
- Custom/built in themes (arch theme, ubuntu theme, windows, light, dark, text_only)
- Built in commands like
- man, tree, ls, cd, help, alias, setDock, clear, ...
- Predefined and runtime forwarded parameters (runtime forwarding is prioritized)
- Easy BBcode support (like: [b]this is bold[/b])
- Logging
- Dragable console
- Slide in animation
- User rights (to restrict the usage of developer only commands)
- Additional Visual and Logging functions (warn, error, sucess )
Fully customizeable
How to create custom commands
Full Version here
#short version
onready var console = $Console
func _ready():
var printThreeRef = CommandRef.new(self, "my_three_print", 3)
var printThreeCommand = ConsoleCommand.new('printThree', printThreeRef , 'Custom print.')
console.add_command(printThreeCommand )
# 3-arguments version (called with: /printVariant print this please)
func my_three_print(arg1, arg2, arg3):
print("your args: %s %s %s" % [arg1, arg2, arg3])
Only the "console" folder is needed
Full documentation/wiki/usage/changlog on:
- https://github.com/cobrapitz/LinuxLikeConsole
Features:
- Auto completion / suggestion
- Custom commands
- Custom Channels (Default only 'All' Channel)
- Custom/built in themes (arch theme, ubuntu theme, windows, light, dark, text_only)
- Built in commands like
-> man, tree, ls, cd, help, alias, setDock, clear, ...
- Predefined and runtime forwarded parameters (runtime forwarding is prioritized)
- Easy BBcode support (like: [b]this is bold[/b])
- Logging
- Dragable console
- Slide in animation
- User rights (to restrict the usage of developer only commands)
- Additional Visual and Logging functions (warn, error, sucess )
Reviews
Quick Information
Only the "console" folder is neededFull documentation/wiki/usage/changlog on:- https://github.com/cobrapitz/LinuxLikeConsole Features:- Auto completion / suggestion- Custom commands- Custom Channels (Default only 'All' Channel)- Custom/built in themes (arch theme, ubuntu theme, windows, light, dark, text_only)- Built in commands like -> man, tree, ls, cd, help, alias, setDock, clear, ...- Predefined and runtime forwarded parameters (runtime forwarding is prioritized)- Easy BBcode support (like: [b]this is bold[/b])- Logging- Dragable console- Slide in animation- User rights (to restrict the usage of developer only commands)- Additional Visual and Logging functions (warn, error, sucess )