mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
Fix vtables
This commit is contained in:
parent
0785a127ac
commit
f255137b2f
@ -28,7 +28,7 @@ Tgl::Group* ViewROI::GetGeometry()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// FUNCTION: LEGO1 0x100a9ee0
|
// FUNCTION: LEGO1 0x100a9ee0
|
||||||
void ViewROI::UpdateWorldData(const MxMatrix& parent2world)
|
void ViewROI::UpdateWorldData(const Matrix4& parent2world)
|
||||||
{
|
{
|
||||||
OrientableROI::UpdateWorldData(parent2world);
|
OrientableROI::UpdateWorldData(parent2world);
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ void ViewROI::UpdateWorldData(const MxMatrix& parent2world)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100a9fc0
|
// STUB: LEGO1 0x100a9fc0
|
||||||
void ViewROI::VTable0x24(const MxMatrix& p_transform)
|
void ViewROI::VTable0x24(const Matrix4& p_transform)
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
}
|
}
|
||||||
|
|||||||
@ -52,14 +52,14 @@ class ViewROI : public OrientableROI {
|
|||||||
float IntrinsicImportance() const override; // vtable+0x04
|
float IntrinsicImportance() const override; // vtable+0x04
|
||||||
void VTable0x1c() override; // vtable+0x1c
|
void VTable0x1c() override; // vtable+0x1c
|
||||||
void SetLocalTransform(const Matrix4& p_transform) override; // vtable+0x20
|
void SetLocalTransform(const Matrix4& p_transform) override; // vtable+0x20
|
||||||
void VTable0x24(const MxMatrix& p_transform) override; // vtable+0x24
|
void VTable0x24(const Matrix4& p_transform) override; // vtable+0x24
|
||||||
virtual const Tgl::Group* GetGeometry() const; // vtable+0x34
|
virtual const Tgl::Group* GetGeometry() const; // vtable+0x34
|
||||||
virtual Tgl::Group* GetGeometry(); // vtable+0x30
|
virtual Tgl::Group* GetGeometry(); // vtable+0x30
|
||||||
|
|
||||||
static undefined SetUnk101013d8(undefined p_flag);
|
static undefined SetUnk101013d8(undefined p_flag);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void UpdateWorldData(const MxMatrix& parent2world) override;
|
void UpdateWorldData(const Matrix4& parent2world) override;
|
||||||
|
|
||||||
Tgl::Group* geometry; // 0xdc
|
Tgl::Group* geometry; // 0xdc
|
||||||
int m_unk0xe0; // 0xe0
|
int m_unk0xe0; // 0xe0
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user