23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/Assets/WebGLTemplates/FileUploader5.6-2017/index.html.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 7ce50840b1155bc4ab0b2341524674bd
3 | timeCreated: 1502022873
4 | licenseType: Free
5 | DefaultImporter:
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/WebGLTemplates/FileUploader5.6-2017/js.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 263a5bf47607c244caf6f1d85a40df1f
3 | folderAsset: yes
4 | timeCreated: 1502022873
5 | licenseType: Free
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/Assets/WebGLTemplates/FileUploader5.6-2017/js/npo.src.js:
--------------------------------------------------------------------------------
1 | /*! Native Promise Only
2 | v0.8.1 (c) Kyle Simpson
3 | MIT License: http://getify.mit-license.org
4 | */
5 |
6 | (function UMD(name,context,definition){
7 | // special form of UMD for polyfilling across evironments
8 | context[name] = context[name] || definition();
9 | if (typeof module != "undefined" && module.exports) { module.exports = context[name]; }
10 | else if (typeof define == "function" && define.amd) { define(function $AMD$(){ return context[name]; }); }
11 | })("Promise",typeof global != "undefined" ? global : this,function DEF(){
12 | /*jshint validthis:true */
13 | "use strict";
14 |
15 | var builtInProp, cycle, scheduling_queue,
16 | ToString = Object.prototype.toString,
17 | timer = (typeof setImmediate != "undefined") ?
18 | function timer(fn) { return setImmediate(fn); } :
19 | setTimeout
20 | ;
21 |
22 | // dammit, IE8.
23 | try {
24 | Object.defineProperty({},"x",{});
25 | builtInProp = function builtInProp(obj,name,val,config) {
26 | return Object.defineProperty(obj,name,{
27 | value: val,
28 | writable: true,
29 | configurable: config !== false
30 | });
31 | };
32 | }
33 | catch (err) {
34 | builtInProp = function builtInProp(obj,name,val) {
35 | obj[name] = val;
36 | return obj;
37 | };
38 | }
39 |
40 | // Note: using a queue instead of array for efficiency
41 | scheduling_queue = (function Queue() {
42 | var first, last, item;
43 |
44 | function Item(fn,self) {
45 | this.fn = fn;
46 | this.self = self;
47 | this.next = void 0;
48 | }
49 |
50 | return {
51 | add: function add(fn,self) {
52 | item = new Item(fn,self);
53 | if (last) {
54 | last.next = item;
55 | }
56 | else {
57 | first = item;
58 | }
59 | last = item;
60 | item = void 0;
61 | },
62 | drain: function drain() {
63 | var f = first;
64 | first = last = cycle = void 0;
65 |
66 | while (f) {
67 | f.fn.call(f.self);
68 | f = f.next;
69 | }
70 | }
71 | };
72 | })();
73 |
74 | function schedule(fn,self) {
75 | scheduling_queue.add(fn,self);
76 | if (!cycle) {
77 | cycle = timer(scheduling_queue.drain);
78 | }
79 | }
80 |
81 | // promise duck typing
82 | function isThenable(o) {
83 | var _then, o_type = typeof o;
84 |
85 | if (o != null &&
86 | (
87 | o_type == "object" || o_type == "function"
88 | )
89 | ) {
90 | _then = o.then;
91 | }
92 | return typeof _then == "function" ? _then : false;
93 | }
94 |
95 | function notify() {
96 | for (var i=0; i