You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix files_dropped in HTML5 export.
(Ignore trailing slash when creating the temporary directory)
(cherry picked from commit 40f26cb260)
This commit is contained in:
committed by
Rémi Verschelde
parent
229489f7b7
commit
e00d20aa5a
@@ -262,7 +262,7 @@ const GodotInputDragDrop = {
|
|||||||
const DROP = `/tmp/drop-${parseInt(Math.random() * (1 << 30), 10)}/`;
|
const DROP = `/tmp/drop-${parseInt(Math.random() * (1 << 30), 10)}/`;
|
||||||
const drops = [];
|
const drops = [];
|
||||||
const files = [];
|
const files = [];
|
||||||
FS.mkdir(DROP);
|
FS.mkdir(DROP.slice(0, -1)); // Without trailing slash
|
||||||
GodotInputDragDrop.pending_files.forEach((elem) => {
|
GodotInputDragDrop.pending_files.forEach((elem) => {
|
||||||
const path = elem['path'];
|
const path = elem['path'];
|
||||||
GodotFS.copy_to_fs(DROP + path, elem['data']);
|
GodotFS.copy_to_fs(DROP + path, elem['data']);
|
||||||
|
|||||||
Reference in New Issue
Block a user