This commit is contained in:
syuilo 2026-06-02 18:00:39 +09:00
commit 7bcb1b1732
2 changed files with 4 additions and 4 deletions

View file

@ -166,9 +166,9 @@ export class PlayerContainer {
}, 100);
};
//this.timer.setTimeout(() => {
// blink();
//}, Math.random() * 10000);
this.timer.setTimeout(() => {
blink();
}, Math.random() * 10000);
}
if (mesh.name.includes('__MOUTH__')) {
if (mouthTex != null) {

View file

@ -1162,7 +1162,7 @@ export class RoomEngine extends EngineBase<{
this.isSitting = true;
this.sr.disableSnapshotRendering();
this.fixedCamera.parent = null;
this.fixedCamera.position = new BABYLON.Vector3(this.camera.position.x, cm(80), this.camera.position.z);
this.fixedCamera.position = new BABYLON.Vector3(this.camera.position.x, cm(70), this.camera.position.z);
this.fixedCamera.rotation = new BABYLON.Vector3(this.camera.rotation.x, this.camera.rotation.y, this.camera.rotation.z);
this.scene.activeCamera = this.fixedCamera;
this.sr.enableSnapshotRendering();