nd-specs/patterns/db_files/chunks/CELL_MOTION.hexpat

25 lines
381 B
Plaintext
Raw Normal View History

2024-07-14 15:33:00 +00:00
#pragma once
#include "Common.hexpat"
2024-07-14 15:33:00 +00:00
struct CellMotionPortal {
Vec3<float> center;
u16 angle;
bool in_motion;
padding[3];
u8 major_axis;
padding[2];
};
struct CellMotionMedium {
Vec3<float> center;
u16 angle_change;
};
struct CellMotion {
CellMotionPortal portal_motions[256];
CellMotionMedium medium_motions[256];
s32 unknown;
};