big website change
Some checks failed
Build / deploy (push) Has been cancelled

This commit is contained in:
CJSatnarine
2026-01-18 03:23:11 -05:00
parent b216402cfa
commit 7b781d895e
13 changed files with 126 additions and 24 deletions

View File

@@ -47,7 +47,7 @@ function init() {
room.load(
// url of file
'../test2.gltf',
'test2.gltf',
// when resource is loaded
function(gltf) {
gltf.scene.position.y = -1;
@@ -69,9 +69,9 @@ function init() {
}
);
image.load('../paw.png', (texture) => {
image.load('paw.png', (texture) => {
pawTexture = texture;
image.load('../finger.png', (texture) => {
image.load('finger.png', (texture) => {
fingerTexture = texture;
const material = new THREE.SpriteMaterial({ map: texture });
currentSprite = new THREE.Sprite(material);