├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── script-name-on-top │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ └── topbar.tscn ├── demo ├── node_2d.gd ├── node_2d.gd.uid └── node_2d.tscn ├── icon.svg ├── icon.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | /android/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/README.md -------------------------------------------------------------------------------- /addons/script-name-on-top/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/addons/script-name-on-top/plugin.cfg -------------------------------------------------------------------------------- /addons/script-name-on-top/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/addons/script-name-on-top/plugin.gd -------------------------------------------------------------------------------- /addons/script-name-on-top/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cw8rtctds5x6p 2 | -------------------------------------------------------------------------------- /addons/script-name-on-top/topbar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/addons/script-name-on-top/topbar.tscn -------------------------------------------------------------------------------- /demo/node_2d.gd: -------------------------------------------------------------------------------- 1 | extends Node2D 2 | 3 | 4 | func _ready() -> void: 5 | pass # noop 6 | -------------------------------------------------------------------------------- /demo/node_2d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cp6wionnpkee7 2 | -------------------------------------------------------------------------------- /demo/node_2d.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/demo/node_2d.tscn -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlizard/ScriptNameOnTop/HEAD/project.godot --------------------------------------------------------------------------------