├── addons └── totobird_creations.gdscript_plus │ ├── LICENSE │ ├── icon.png │ ├── node_classes │ └── plugin.gd │ ├── plugin.cfg │ ├── plugin.gd │ ├── property_descriptions │ ├── editor.gd │ ├── inspector.gd │ └── plugin.gd │ └── signal_descriptions │ └── plugin.gd ├── example ├── node_class_descriptions │ ├── custom_node.gd │ ├── example.tscn │ ├── recommended_syntax.gd │ └── uncreatable_node.gd └── property_descriptions │ ├── example.gd │ └── example.tscn └── project.godot /addons/totobird_creations.gdscript_plus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/LICENSE -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/icon.png -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/node_classes/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/node_classes/plugin.gd -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/plugin.cfg -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/plugin.gd -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/property_descriptions/editor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/property_descriptions/editor.gd -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/property_descriptions/inspector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/property_descriptions/inspector.gd -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/property_descriptions/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/property_descriptions/plugin.gd -------------------------------------------------------------------------------- /addons/totobird_creations.gdscript_plus/signal_descriptions/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/addons/totobird_creations.gdscript_plus/signal_descriptions/plugin.gd -------------------------------------------------------------------------------- /example/node_class_descriptions/custom_node.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/example/node_class_descriptions/custom_node.gd -------------------------------------------------------------------------------- /example/node_class_descriptions/example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/example/node_class_descriptions/example.tscn -------------------------------------------------------------------------------- /example/node_class_descriptions/recommended_syntax.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/example/node_class_descriptions/recommended_syntax.gd -------------------------------------------------------------------------------- /example/node_class_descriptions/uncreatable_node.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/example/node_class_descriptions/uncreatable_node.gd -------------------------------------------------------------------------------- /example/property_descriptions/example.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/example/property_descriptions/example.gd -------------------------------------------------------------------------------- /example/property_descriptions/example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/example/property_descriptions/example.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Totobird-Creations/Godot-GDScript-Plus/HEAD/project.godot --------------------------------------------------------------------------------