diff --git a/FEATURES.md b/FEATURES.md index a8defa8a..65476a93 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -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 - [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 +- 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 diff --git a/src/quest_editor/rendering/EntityImageRenderer.ts b/src/quest_editor/rendering/EntityImageRenderer.ts index fc0ed5b0..d3a819a3 100644 --- a/src/quest_editor/rendering/EntityImageRenderer.ts +++ b/src/quest_editor/rendering/EntityImageRenderer.ts @@ -11,7 +11,7 @@ import { DisposablePromise } from "../../core/DisposablePromise"; const light = new HemisphereLight(0xffffff, 0x505050, 1.2); 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_dist_factor = 1.3 / Math.tan(((camera.fov / 180) * Math.PI) / 2);