- Add interactive door system with click detection on door meshes - Create custom DoorModal component replacing browser confirm() - Implement door opening with texture change to door1_open.png - Add additive door rendering to preserve opened doors - Remove exploration button and requestExploration method - Implement camera orbit controls with smooth animations - Add active view indicator (yellow highlight) on camera buttons - Add vertical zoom slider with label - Fix camera to maintain isometric perspective while rotating - Integrate all systems into main game loop
21 lines
501 B
YAML
21 lines
501 B
YAML
services:
|
|
warhammer-quest-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "8080:5173" # Puerto de Vite dev server
|
|
volumes:
|
|
- ./src:/app/src
|
|
- ./public:/app/public
|
|
- ./index.html:/app/index.html
|
|
- ./vite.config.js:/app/vite.config.js
|
|
- node_modules:/app/node_modules # Volumen anónimo para node_modules
|
|
environment:
|
|
- NODE_ENV=development
|
|
restart: unless-stopped
|
|
command: npm run dev
|
|
|
|
volumes:
|
|
node_modules:
|