I have been updating my post Editor Scripts 🔥: Alpha Release - #38 by Jerakin but it’s getting quite burried so I decided to move them into new topic, I will update this topic with any extensions I create.
editor-script-atlas
- Add any number of images to the selected atlas.
- Add any number of images to the selected atlas, as an animation.
- Create a new atlas from the selected images
editor-script-templates
Define your own template files and create them from the file context menu. Use this create default files such as lua modules that have all your basic setup already made in them, such as requiring your utils libraries.
editor-script-extra-locations
Add locations to which you can browse to within the engine. Use this to add locations to things such as save files to easily remove them.
editor-script-align
Align gui nodes. You can find it under the Edit menu. Currently limited as I can not get parent of a node #2815 or all properties from the outline #2819. I also only take Z rotation into account.
Future plans: With #2819 and #2815 I will be able to make this a lot more useful/flexible.
editor-script-distribute
Distribute gui nodes. You can find it under the Edit menu. It is currently limited in the same way as editor-script-align
Future plans: With #2819 and #2815 I will be able to make this a lot more useful/flexible.
editor-script-check-dependencies-versions
Update: Sometimes Defold doesn’t find the installed python version. I usually run the python script standalone now days.
This extension requires python to be installed. It print the status of your dependencies as an easy way to see if they are up to date or not.
Future plans: If/When #2798 is fixed (need http support in editor_scripts) I plan to convert it to pure lua.
Example output:
Project 'defold-clipboard' is up to date.
Project 'defold-lfs' is outdated, latest version is
https://github.com/britzl/defold-lfs/archive/1.0.1.zip
Project 'extension-gps' is up to date.
Edits:
2024-03-09: Added editor-script-templates and editor-script-extra-locations
2024-03-10: Added a feature to atlas to enable you to add the selected images as an animation.