mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Updated FEATURES.md.
This commit is contained in:
parent
599cab4b2b
commit
e950fb0e78
14
FEATURES.md
14
FEATURES.md
@ -1,6 +1,6 @@
|
|||||||
# Feature Overview
|
# Feature Overview
|
||||||
|
|
||||||
Features that are in ***bold italics*** are planned and not yet implemented.
|
Features that are in ***bold italics*** are planned but not yet implemented.
|
||||||
|
|
||||||
## Create New Quest
|
## Create New Quest
|
||||||
|
|
||||||
@ -11,7 +11,7 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
|
|
||||||
- Open file button
|
- Open file button
|
||||||
- Support for .qst (BB, ***GC***, ***PC***, ***DC***)
|
- Support for .qst (BB, ***GC***, ***PC***, ***DC***)
|
||||||
- ***Notify user when and why quest loading fails***
|
- Notify user when and why quest loading fails
|
||||||
- ***Deal with missing DAT or BIN file in QST container file***
|
- ***Deal with missing DAT or BIN file in QST container file***
|
||||||
|
|
||||||
## Save Quest
|
## Save Quest
|
||||||
@ -151,14 +151,6 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
|
|
||||||
## Bugs
|
## Bugs
|
||||||
|
|
||||||
- [3D View](#3d-view): Some objects are only partially loaded (they consist of several separate models), e.g.:
|
- [NPC/Object Manipulation](#npcobject-manipulation): Entities in NPCs/Objects panels with additive blending aren't rendered correctly.
|
||||||
- Random Type Box 1
|
|
||||||
- Fixed Type Box
|
|
||||||
- Forest Switch
|
|
||||||
- Laser Fence
|
|
||||||
- Forest Laser
|
|
||||||
- Switch (none door)
|
|
||||||
- Energy Barrier
|
|
||||||
- Teleporter
|
|
||||||
- [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)
|
||||||
|
@ -98,7 +98,7 @@ export class AsmEditorStore extends Store {
|
|||||||
readonly undo = new SimpleUndo(
|
readonly undo = new SimpleUndo(
|
||||||
"Text edits",
|
"Text edits",
|
||||||
() => this._did_undo.emit({ value: "asm undo" }),
|
() => this._did_undo.emit({ value: "asm undo" }),
|
||||||
() => this._did_redo.emit({ value: "asm undo" }),
|
() => this._did_redo.emit({ value: "asm redo" }),
|
||||||
);
|
);
|
||||||
readonly inline_args_mode: Property<boolean> = this._inline_args_mode;
|
readonly inline_args_mode: Property<boolean> = this._inline_args_mode;
|
||||||
readonly has_issues: Property<boolean> = assembly_analyser.issues.map(
|
readonly has_issues: Property<boolean> = assembly_analyser.issues.map(
|
||||||
|
Loading…
Reference in New Issue
Block a user