Skip to content

Commit 97767e9

Browse files
committed
first commit
0 parents  commit 97767e9

15 files changed

+950
-0
lines changed

.gitignore

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
*.lcov
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Microbundle cache
57+
.rpt2_cache/
58+
.rts2_cache_cjs/
59+
.rts2_cache_es/
60+
.rts2_cache_umd/
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# dotenv environment variables file
72+
.env
73+
.env.test
74+
75+
# parcel-bundler cache (https://parceljs.org/)
76+
.cache
77+
78+
# Next.js build output
79+
.next
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
84+
# Gatsby files
85+
.cache/
86+
87+
# vuepress build output
88+
.vuepress/dist
89+
90+
# Serverless directories
91+
.serverless/
92+
93+
# FuseBox cache
94+
.fusebox/
95+
96+
# DynamoDB Local files
97+
.dynamodb/
98+
99+
# TernJS port file
100+
.tern-port
101+
.buildcache
102+
103+
build/
104+
dist/
105+
**/docs/
106+
107+
.DS_Store
108+
109+
.history
110+
.history/
111+
112+
index.ts.bak

.mocharc.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
/*
3+
CPAL-1.0 License
4+
5+
The contents of this file are subject to the Common Public Attribution License
6+
Version 1.0. (the "License"); you may not use this file except in compliance
7+
with the License. You may obtain a copy of the License at
8+
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
9+
The License is based on the Mozilla Public License Version 1.1, but Sections 14
10+
and 15 have been added to cover use of software over a computer network and
11+
provide for limited attribution for the Original Developer. In addition,
12+
Exhibit A has been modified to be consistent with Exhibit B.
13+
14+
Software distributed under the License is distributed on an "AS IS" basis,
15+
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
16+
specific language governing rights and limitations under the License.
17+
18+
The Original Code is Ethereal Engine.
19+
20+
The Original Developer is the Initial Developer. The Initial Developer of the
21+
Original Code is the Ethereal Engine team.
22+
23+
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
24+
Ethereal Engine. All Rights Reserved.
25+
*/
26+
27+
module.exports = {
28+
failZero: false,
29+
parallel: false,
30+
require: [
31+
'tests/mocha.env', // init env here
32+
'jsdom-global/register'
33+
],
34+
extension: [
35+
'ts'
36+
],
37+
bail: true,
38+
exit: true,
39+
recursive: true,
40+
jobs: '1',
41+
timeout: '60000'
42+
};

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
CPAL-1.0 License
2+
3+
The contents of this file are subject to the Common Public Attribution License
4+
Version 1.0. (the "License"); you may not use this file except in compliance
5+
with the License. You may obtain a copy of the License at
6+
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
7+
The License is based on the Mozilla Public License Version 1.1, but Sections 14
8+
and 15 have been added to cover use of software over a computer network and
9+
provide for limited attribution for the Original Developer. In addition,
10+
Exhibit A has been modified to be consistent with Exhibit B.
11+
12+
Software distributed under the License is distributed on an "AS IS" basis,
13+
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
14+
specific language governing rights and limitations under the License.
15+
16+
The Original Code is Ethereal Engine.
17+
18+
The Original Developer is the Initial Developer. The Initial Developer of the
19+
Original Code is the Ethereal Engine team.
20+
21+
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
22+
Ethereal Engine. All Rights Reserved.

basic.envmap.ktx2

1.16 MB
Binary file not shown.

basic.loadingscreen.ktx2

107 KB
Binary file not shown.

0 commit comments

Comments
 (0)