Fixed rendering of Saint-Milion and veriants in NPCs pane.

This commit is contained in:
Daan Vanden Bosch 2020-04-25 21:40:47 +02:00
parent 0425faec81
commit eb5b539b6d
2 changed files with 17 additions and 1 deletions

View File

@ -155,3 +155,19 @@ Features that are in ***bold italics*** are planned but not yet implemented.
- [Load Quest](#load-quest): Can't parse quest 125 White Day - [Load Quest](#load-quest): Can't parse quest 125 White Day
- [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231) - [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231)
- When a modal dialog is open, global keybindings should be disabled - When a modal dialog is open, global keybindings should be disabled
- Entities with rendering issues:
- Caves 4 Button door
- Pofuilly Slime
- Pouilly Slime
- Easter Egg
- Christmas Tree
- Halloween Pumpkin
- 21st Century
- Light rays - used in forest and CCA
- Big CCA Door Switch
- Laser Detect - used in CCA
- Wide Glass Wall (breakable) - used in Seabed
- item box cca
- Desert Fixed Type Box (Breakable Crystals)
- Merissa A
- Merissa AA

View File

@ -11,7 +11,7 @@ import { DisposablePromise } from "../../core/DisposablePromise";
const light = new HemisphereLight(0xffffff, 0x505050, 1.2); const light = new HemisphereLight(0xffffff, 0x505050, 1.2);
const scene = new Scene(); const scene = new Scene();
const camera = new PerspectiveCamera(30, 1, 10, 1000); const camera = new PerspectiveCamera(30, 1, 10, 2000);
const camera_position = new Vector3(1, 1, 2).normalize(); const camera_position = new Vector3(1, 1, 2).normalize();
const camera_dist_factor = 1.3 / Math.tan(((camera.fov / 180) * Math.PI) / 2); const camera_dist_factor = 1.3 / Math.tan(((camera.fov / 180) * Math.PI) / 2);