nathanhoad / godot_dialogue_manager

A powerful nonlinear dialogue system for Godot
MIT License
2.22k stars 170 forks source link

Allow getting path to a file by dragging it into the dialogue editor #653

Closed gatomesa closed 3 months ago

gatomesa commented 3 months ago

Is your feature request related to a problem? Please describe. In the Godot script editor, there's a useful feature where you can drag a file into the editor and it auto-fills the file's path wherever you drop it. This would be useful to have in this plugin's dialogue editor too, as many times I pass a file path as the argument to a function in a mutation.

Describe the solution you'd like Something that works just like in the script editor: you drag the file into the editor, and a second cursor appears which you can use to drop the file path where you want it.

Describe alternatives you've considered You can Right Click -> Copy Path, but you have to add the "" at the beginning and end of the copied path manually. This is a good QoL improvement.