Because of sync, my Dropbox assets are all mixed up. Is there a way to fix the arrangement or at least search them conveniently? I could create my own search utility but it is slow to keep changing projects.
@em2 I’m not sure why you’re having trouble. I don’t have a lot of things in my Dropbox folder, but they’re in alphabetical order. I created a few more and everything was still in alphabetical order. Actually they’re in alpha order within 3 groups of Sprites, Shaders, and Text. Also, if you use the below code, it lists them as one group in alpha order.
function setup()
a=assetList("Dropbox")
for x,y in pairs(a) do
print(x,y)
end
end