Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CelesteComet/BabylonJS-Doom-Clone
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: babylonjs-archive/doom-clone
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 11 commits
  • 8,718 files changed
  • 1 contributor

Commits on Feb 3, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    52095e5 View commit details
  2. Remove .DS_Store files.

    Symbitic committed Feb 3, 2023
    Copy the full SHA
    23e74a7 View commit details
  3. Add GitHub Action.

    Symbitic committed Feb 3, 2023
    Copy the full SHA
    3444e51 View commit details

Commits on Feb 4, 2023

  1. Move workflow.

    Symbitic committed Feb 4, 2023
    Copy the full SHA
    5158705 View commit details
  2. Create deploy.yml

    Symbitic authored Feb 4, 2023
    Copy the full SHA
    2765737 View commit details
  3. Add vite base.

    Symbitic committed Feb 4, 2023
    Copy the full SHA
    d75d282 View commit details
  4. Specify base in script.

    Symbitic committed Feb 4, 2023
    Copy the full SHA
    9300378 View commit details
  5. Copy the full SHA
    d0c1181 View commit details
  6. Remove top-level await.

    Symbitic committed Feb 4, 2023
    Copy the full SHA
    3d4906b View commit details

Commits on Mar 30, 2024

  1. ci: update git repo location

    Symbitic committed Mar 30, 2024
    Copy the full SHA
    570d8a9 View commit details
  2. refactor: use tree-shaking

    Symbitic committed Mar 30, 2024
    Copy the full SHA
    b2d6ad1 View commit details
Showing 8,718 changed files with 3,720 additions and 1,133,564 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file removed .DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4

[*.json, *.yaml]
insert_final_newline = false
indent_size = 2
49 changes: 49 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3.5.1
with:
node-version: "16.x"
- name: Install Dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
47 changes: 0 additions & 47 deletions DecalManager.js

This file was deleted.

19 changes: 0 additions & 19 deletions GridManager.js

This file was deleted.

118 changes: 0 additions & 118 deletions KeyboardManager.js

This file was deleted.

Loading