Skip to content

Commit 6c6719e

Browse files
Nft museum (#184)
* update * Add files via upload push nft museum Signed-off-by: KJ <53322457+KatherineJoelle@users.noreply.github.com> * Update scene.json Signed-off-by: KJ <53322457+KatherineJoelle@users.noreply.github.com> * add pkg Signed-off-by: KJ <53322457+KatherineJoelle@users.noreply.github.com> * Delete package-lock.json Signed-off-by: KJ <53322457+KatherineJoelle@users.noreply.github.com> * minor * toggle audio * update * v2 * add v2 * v2 * working * clean up * minor * better elevator movement * door adjustments wip * door adjustments * simplify door logic * door cleanup, radio ui toggle * camera mode, video bug squash * reward ui adjustments * improve art hover * audio toggle * playlist skipping blocked by cors * playlist ui update + clean * audio + adjustments * art positions interface * clean up * Update README.md Signed-off-by: KJ <53322457+KatherineJoelle@users.noreply.github.com> * minor adjustments * radio + playlist ui * prettier ui * volume + reward sound * clean up * vid bug scout * must be poap loading related? * art hover adjust wip * click areas * all hover pos + scale matching * clean up, add cooldown for better processing * good to go * remove timer from art hover * Add UI & coordinates & lint * lint atari arcade --------- Signed-off-by: KJ <53322457+KatherineJoelle@users.noreply.github.com> Co-authored-by: Nicolas Earnshaw <nearnshaw@decentraland.org> Co-authored-by: nearnshaw <earnshaw.nico@gmail.com>
1 parent b828cff commit 6c6719e

Some content is hidden

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

98 files changed

+7122
-9954
lines changed

NFT-Museum/.dclignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.*
2+
bin/*.map
3+
package-lock.json
4+
yarn-lock.json
5+
build.json
6+
export
7+
tsconfig.json
8+
tslint.json
9+
node_modules
10+
*.ts
11+
*.tsx
12+
.vscode
13+
Dockerfile
14+
dist
15+
README.md
16+
*.blend
17+
*.fbx
18+
*.zip
19+
*.rar
20+
src

NFT-Museum/.github/workflows/ci.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test-build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
lint-and-build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Use Node.js 18.x
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: 18.x
16+
- name: install dependencies
17+
run: npm install
18+
- name: npm run build
19+
run: npm run build

NFT-Museum/.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package-lock.json
2+
*.js
3+
node_modules
4+
bin/
5+
.DS_Store
6+
**/.DS_Store
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*

NFT-Museum/.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["decentralandfoundation.decentraland-sdk7"]
3+
}

NFT-Museum/.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use the Decentraland Editor extension of VSCode to debug the scene
3+
// in chrome from VSCode
4+
"version": "0.2.0",
5+
"configurations": [
6+
{
7+
"type": "chrome",
8+
"request": "launch",
9+
"name": "Debug Decentraland in Chrome",
10+
"url": "${command:decentraland-sdk7.commands.getDebugURL}",
11+
"webRoot": "${workspaceFolder}/bin",
12+
"sourceMapPathOverrides": {
13+
"dcl:///*": "${workspaceFolder}/*"
14+
}
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)