├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── CursorShapePreviewer │ ├── CursorShapeEditorProperty.gd │ ├── plugin.cfg │ └── plugin.gd ├── icon.png ├── icon.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/README.md -------------------------------------------------------------------------------- /addons/CursorShapePreviewer/CursorShapeEditorProperty.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/addons/CursorShapePreviewer/CursorShapeEditorProperty.gd -------------------------------------------------------------------------------- /addons/CursorShapePreviewer/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/addons/CursorShapePreviewer/plugin.cfg -------------------------------------------------------------------------------- /addons/CursorShapePreviewer/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/addons/CursorShapePreviewer/plugin.gd -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaevi/godot-cursor-shape-previewer/HEAD/project.godot --------------------------------------------------------------------------------