Skip to content

Commit 36bf397

Browse files
authored
Merge pull request #1 from BabylonJS/master
Latest
2 parents 62c3921 + db57ae0 commit 36bf397

File tree

2,407 files changed

+1950602
-1622848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,407 files changed

+1950602
-1622848
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Use Github issues ONLY for validated bugs. PLEASE DISCUSS THEM ON THE FORUM FIRST!**
11+
12+
We have a really active forum to help answering questions (https://forum.babylonjs.com/)
13+
14+
*If you are convinced that you found a bug, please use the following template for your issue:*
15+
16+
**Repro**
17+
- Bug repro on [playground](https://playground.babylonjs.com):
18+
- Expected result:
19+
- Current result:
20+
21+
**Screenshots**
22+
If applicable, add screenshots to help explain your problem.
23+
24+
**Desktop (please complete the following information):**
25+
- OS: [e.g. iOS]
26+
- Browser [e.g. chrome, safari]
27+
- Version [e.g. 22]
28+
29+
**Smartphone (please complete the following information):**
30+
- Device: [e.g. iPhone6]
31+
- OS: [e.g. iOS8.1]
32+
- Browser [e.g. stock browser, safari]
33+
- Version [e.g. 22]
34+
35+
**Additional context**
36+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Discussion**
17+
You must provide a link to the forum post where the initial discussion happened

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,9 @@ gui/dist/
196196
/Viewer/tests/tsc
197197
/Viewer/tests/tsc.cmd
198198
/Viewer/tests/tsserver
199-
/Viewer/tests/tsserver.cmd
199+
/Viewer/tests/tsserver.cmd
200+
# Local Netlify folder
201+
.netlify
202+
Playground/dist/
203+
Sandbox/public/dist/
204+
ktx2Decoder/dist/

.gitpod.Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM gitpod/workspace-full-vnc
2+
3+
USER gitpod
4+
5+
RUN sudo apt-get update && \
6+
sudo apt-get install -yq chromium-browser firefox && \
7+
sudo rm -rf /var/lib/apt/lists/*
8+
9+
ENV CHROME_BIN=/usr/bin/chromium-browser
10+
ENV BROWSER="Chrome_Without_Sandbox"

.gitpod.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
tasks:
4+
- command: gp await-port 1338 && sleep 3 && gp preview $(gp url 1338)/sandbox/public/index-local.html
5+
- before: >
6+
cd Tools/Gulp &&
7+
npm i typescript [email protected] -g &&
8+
npm install
9+
command: npm run start
10+
ports:
11+
- port: 1338
12+
onOpen: ignore
13+
- port: 3000
14+
onOpen: ignore

.mergify.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pull_request_rules:
2+
- name: Automatic merge
3+
conditions:
4+
- label=automerge
5+
- status-success=CI
6+
actions:
7+
merge:
8+
method: merge

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 4,
4+
"printWidth": 300
5+
}

.travis.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)