Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
67dc727
fix: invariantes MAT2/TEX1, poster duplicado, check de posters e limp…
EmersonGarrido Aug 18, 2026
e271355
Merge da base (conflito só em arquivo gerado, resolvido pelo autofix)
csbrasil-BOT Aug 22, 2026
b1908f7
chore(docs): regenera bloco derivado (autofix)
csbrasil-BOT Aug 22, 2026
15d0871
Merge da base (conflito só em arquivo gerado, resolvido pelo autofix)
csbrasil-BOT Aug 22, 2026
631a2f9
Merge da base (conflito só em arquivo gerado, resolvido pelo autofix)
csbrasil-BOT Aug 22, 2026
53647d8
chore(docs): regenera bloco derivado (autofix)
csbrasil-BOT Aug 22, 2026
0a1c752
Merge da base (conflito só em arquivo gerado, resolvido pelo autofix)
csbrasil-BOT Aug 22, 2026
3e67cb8
chore(docs): regenera bloco derivado (autofix)
csbrasil-BOT Aug 22, 2026
f1ec5a0
Merge da base (conflito só em arquivo gerado, resolvido pelo autofix)
csbrasil-BOT Aug 22, 2026
abb558e
Merge branch 'main' of https://github.com/corosolto/client into fix/i…
csbrasil-BOT Aug 22, 2026
f134388
chore(docs): regenera bloco derivado (autofix)
csbrasil-BOT Aug 22, 2026
fe4a288
Merge da base (autofix)
csbrasil-BOT Aug 22, 2026
fc0e374
Merge da base (autofix)
csbrasil-BOT Aug 22, 2026
8adb8cc
Merge da base (autofix)
csbrasil-BOT Aug 22, 2026
97187dd
Merge da base (autofix)
csbrasil-BOT Aug 22, 2026
7079004
Merge da base (autofix)
csbrasil-BOT Aug 22, 2026
25f0ee9
Merge da base (autofix)
csbrasil-BOT Aug 22, 2026
f6f63f5
Merge da base (autofix)
csbrasil-BOT Aug 23, 2026
9c4ab00
chore(docs): regenera bloco derivado (autofix)
csbrasil-BOT Aug 23, 2026
96598cd
Merge da base (conflito só em arquivo gerado, resolvido pelo autofix)
csbrasil-BOT Aug 23, 2026
6994978
Merge da base (autofix)
csbrasil-BOT Aug 24, 2026
0516e08
Merge da base (autofix)
csbrasil-BOT Aug 24, 2026
01fd0e8
Merge da base (autofix)
csbrasil-BOT Aug 26, 2026
cb0c639
chore(docs): regenera bloco derivado (autofix)
csbrasil-BOT Aug 26, 2026
925acee
Merge da base (autofix)
csbrasil-BOT Aug 26, 2026
310c09b
Merge da base (autofix)
csbrasil-BOT Aug 26, 2026
7e7b654
Merge da base (autofix)
csbrasil-BOT Aug 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed public/img/loading-1.png
Binary file not shown.
Binary file removed public/img/loading-2.png
Binary file not shown.
Binary file removed public/img/loading-3.png
Binary file not shown.
Binary file removed public/img/loading-4.png
Binary file not shown.
Binary file removed public/img/loading-5.png
Binary file not shown.
Binary file removed public/img/symbols.png
Binary file not shown.
Binary file removed public/img/wall-2.png
Binary file not shown.
Binary file removed public/img/wall-3.png
Binary file not shown.
Binary file removed public/img/wall-4.png
Binary file not shown.
Binary file removed public/img/wall-5.png
Binary file not shown.
Binary file removed public/img/wall-6.png
Binary file not shown.
Binary file removed public/img/wall-7.png
Binary file not shown.
Binary file removed public/img/wall-8.png
Binary file not shown.
2 changes: 1 addition & 1 deletion public/js/map_penitenciaria.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function buildPenitenciaria(scene) {
yard: new THREE.MeshStandardMaterial({ map: tex.yard, bumpMap: tex.yard, bumpScale: .055, color: 0x8b8f89, roughness: 1 }),
steel: new THREE.MeshStandardMaterial({ map: tex.steel, bumpMap: tex.steel, bumpScale: .025, color: 0x8a9292, metalness: .72, roughness: .5 }),
rust: new THREE.MeshStandardMaterial({ color: 0x714529, metalness: .42, roughness: .82 }),
white: new THREE.MeshStandardMaterial({ color: 0xe6e2cf, roughness: .75 }),
white: new THREE.MeshStandardMaterial({ map: tex.concrete, bumpMap: tex.concrete, bumpScale: .025, color: 0xe6e2cf, roughness: .75 }),
Comment thread
rubenmarcus marked this conversation as resolved.
yellow: new THREE.MeshStandardMaterial({ color: 0xe5a92f, roughness: .7 }),
red: new THREE.MeshStandardMaterial({ color: 0xb42d25, roughness: .65 }),
blue: new THREE.MeshStandardMaterial({ color: 0x173f79, roughness: .5 }),
Expand Down
2 changes: 1 addition & 1 deletion public/js/map_velho_oeste.js
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export function buildVelhoOeste(scene) {
const hemi = new THREE.HemisphereLight(0xffd2a3, 0x5b3828, 1.45); scene.add(hemi);
const sun = new THREE.DirectionalLight(0xffc27b, 2.05); sun.position.set(-35, 42, -28); sun.castShadow = true;
sun.shadow.mapSize.set(2048, 2048); sun.shadow.camera.left = -48; sun.shadow.camera.right = 48; sun.shadow.camera.top = 58; sun.shadow.camera.bottom = -58; sun.shadow.camera.far = 160; sun.shadow.bias = -.00045; scene.add(sun);
const fill = new THREE.DirectionalLight(0x86a5c9, .42); fill.position.set(24, 22, 35); scene.add(fill);
const fill = new THREE.DirectionalLight(0x86a5c9, .34); fill.position.set(24, 22, 35); scene.add(fill);
Comment thread
rubenmarcus marked this conversation as resolved.

const groundHeightAt = () => 0;
const slowAt = () => false;
Expand Down
2 changes: 1 addition & 1 deletion public/js/textures.js
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ export function initTextures() {
// [file, aspect w/h]. Priority first (DOLLYNHO + New Project), then the rest.
// Reproduz dimensões, aspecto real e desvio: node tools/eval/poster-aspect-check.mjs --json
const POSTER_FILES = [
['ashtar.png', 0.5625, 1.35], ['ashtar.png', 0.5625, 1.35],
['ashtar.png', 0.5625, 1.35],
['ashtar-meme.jpg', 0.98, 1.2], // o MEME original — o dono mandou voltar ('estava bom tb')
['despisque-leao.jpg', 0.86, 1.2], // o par do meme (leão 'despisque') — voltou junto, pedido de 06/08
['DOLLYNHO.png', 0.5625], ['New Project (1).png', 0.5625],
Expand Down
Loading