mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-10 07:57:46 +00:00
Parse unknown actor controls
For use downstream in Packet Analzyer, instead of showing nothing.
This commit is contained in:
parent
68f6747598
commit
10d4d957fa
1 changed files with 8 additions and 1 deletions
|
@ -115,7 +115,14 @@ pub enum ActorControlCategory {
|
||||||
actor_id: u32,
|
actor_id: u32,
|
||||||
unk1: u32,
|
unk1: u32,
|
||||||
},
|
},
|
||||||
Unknown {},
|
Unknown {
|
||||||
|
category: u16,
|
||||||
|
#[brw(pad_before = 2)] // padding
|
||||||
|
param1: u32,
|
||||||
|
param2: u32,
|
||||||
|
param3: u32,
|
||||||
|
param4: u32,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
#[binrw]
|
#[binrw]
|
||||||
|
|
Loading…
Add table
Reference in a new issue