Skip to content

Commit

Permalink
update few paths
Browse files Browse the repository at this point in the history
  • Loading branch information
madjin committed Feb 3, 2024
1 parent d3fc86c commit f2625dc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions public/style.css
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
/* New UI: TT Squares Condensed Font */
@font-face {
font-family: "TTSC-Black-Italic";
src: url("/fonts/tt-squares/TT Squares Condensed Black Italic.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Black Italic.otf");
}
@font-face {
font-family: "TTSC-Black";
src: url("/fonts/tt-squares/TT Squares Condensed Black.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Black.otf");
}
@font-face {
font-family: "TTSC-Bold-Italic";
src: url("/fonts/tt-squares/TT Squares Condensed Bold Italic.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Bold Italic.otf");
}
@font-face {
font-family: "TTSC-Bold";
src: url("/fonts/tt-squares/TT Squares Condensed Bold.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Bold.otf");
}
@font-face {
font-family: "TTSC-Light-Italic";
src: url("/fonts/tt-squares/TT Squares Condensed Light Italic.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Light Italic.otf");
}
@font-face {
font-family: "TTSC-Light";
src: url("/fonts/tt-squares/TT Squares Condensed Light.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Light.otf");
}
@font-face {
font-family: "TTSC-Regular-Italic";
src: url("/fonts/tt-squares/TT Squares Condensed Regular Italic.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Regular Italic.otf");
}
@font-face {
font-family: "TTSC-Regular";
src: url("/fonts/tt-squares/TT Squares Condensed Regular.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Regular.otf");
}
@font-face {
font-family: "TTSC-Thin-Italic";
src: url("/fonts/tt-squares/TT Squares Condensed Thin italic.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Thin italic.otf");
}
@font-face {
font-family: "TTSC-Thin";
src: url("/fonts/tt-squares/TT Squares Condensed Thin.otf");
src: url("./fonts/tt-squares/TT Squares Condensed Thin.otf");
}

html,
Expand Down Expand Up @@ -154,4 +154,4 @@ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009564",endCo

@keyframes rotate{
to{ transform: rotate(360deg); }
}
}
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import BatchManifest from "./pages/BatchManifest"
import Wallet from "./pages/Wallet"

// dynamically import the manifest
const assetImportPath = import.meta.env.VITE_ASSET_PATH + "/manifest.json"
const assetImportPath = import.meta.env.VITE_ASSET_PATH + "./manifest.json"

let cameraDistance
const centerCameraTarget = new THREE.Vector3()
Expand Down
4 changes: 2 additions & 2 deletions src/library/PlatformLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ export class PlatformLoader {
}
// async function fetchScene() {
// // load environment
// const modelPath = "/3d/Platform.glb"
// const modelPath = "./3d/Platform.glb"

// const loader = new GLTFLoader()
// // load the modelPath
// const gltf = await loader.loadAsync(modelPath)
// return gltf.scene
// }

}
}

0 comments on commit f2625dc

Please sign in to comment.