mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-08-17 04:56:42 +02:00
Add the dance app by HiFi. As far as I can see it works , atleast as good as did back then. Bugs that I know of (but can't fix): * On some avatars, the preview doubleganger is horribly mangled. * it is possible to grab images in the UI and drag them inworld.
6 lines
285 B
JavaScript
6 lines
285 B
JavaScript
var fs = require("fs");
|
|
var dir = fs.readdirSync(__dirname);
|
|
var baseUrl = "https://hifi-content.s3.amazonaws.com/milad/ROLC/Organize/O_Projects/Hifi/Scripts/hifi-content/DomainContent/Rust/DanceApp/Animations/";
|
|
var finalArray = dir.map(function(file){
|
|
return baseUrl + file;
|
|
});
|