2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "dCommonVars.h"
|
|
|
|
#include "NiPoint3.h"
|
|
|
|
#include "NiQuaternion.h"
|
|
|
|
#include "LDFFormat.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
struct SceneObject {
|
|
|
|
LWOOBJID id;
|
|
|
|
LOT lot;
|
2023-11-22 02:04:23 +00:00
|
|
|
uint32_t nodeType;
|
|
|
|
uint32_t glomId;
|
2021-12-05 17:54:36 +00:00
|
|
|
NiPoint3 position;
|
|
|
|
NiQuaternion rotation;
|
|
|
|
float scale = 1.0f;
|
|
|
|
//std::string settings;
|
|
|
|
uint32_t value3;
|
2022-07-28 13:39:57 +00:00
|
|
|
std::vector<LDFBaseData*> settings;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define LOT_MARKER_PLAYER_START 1931
|
2022-07-28 13:39:57 +00:00
|
|
|
#define LOT_MARKET_CAMERA_TARGET 2182
|