From 9492515b2569d10765d0ef1a38fd9d6196a3fc65 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Fri, 1 May 2020 14:40:32 +0200 Subject: [PATCH] Added docs to two NPC properties. --- src/core/data_formats/parsing/quest/entities.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/data_formats/parsing/quest/entities.ts b/src/core/data_formats/parsing/quest/entities.ts index cc1665cf..c597d81a 100644 --- a/src/core/data_formats/parsing/quest/entities.ts +++ b/src/core/data_formats/parsing/quest/entities.ts @@ -16,6 +16,7 @@ export type QuestNpc = { readonly rotation: Vec3; /** * Seemingly 3 floats, not sure what they represent. + * The y component is used to help determine what the NpcType is. */ readonly scale: Vec3; /** @@ -24,6 +25,9 @@ export type QuestNpc = { readonly unknown: readonly number[][]; readonly pso_type_id: number; readonly npc_id: number; + /** + * Only seems to be valid for non-enemies. + */ readonly script_label: number; readonly pso_roaming: number; };