mirror of
https://github.com/zeldaret/botw
synced 2026-07-27 06:45:02 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -6,26 +6,8 @@ EquipedWithScale::EquipedWithScale(const InitArg& arg) : EquipedAction(arg) {}
|
||||
|
||||
EquipedWithScale::~EquipedWithScale() = default;
|
||||
|
||||
bool EquipedWithScale::init_(sead::Heap* heap) {
|
||||
return EquipedAction::init_(heap);
|
||||
}
|
||||
|
||||
void EquipedWithScale::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
EquipedAction::enter_(params);
|
||||
}
|
||||
|
||||
void EquipedWithScale::leave_() {
|
||||
EquipedAction::leave_();
|
||||
}
|
||||
|
||||
void EquipedWithScale::loadParams_() {
|
||||
getDynamicParam(&mNodeName_d, "NodeName");
|
||||
getDynamicParam(&mRotOffset_d, "RotOffset");
|
||||
getDynamicParam(&mTransOffset_d, "TransOffset");
|
||||
}
|
||||
|
||||
void EquipedWithScale::calc_() {
|
||||
EquipedAction::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
|
||||
Reference in New Issue
Block a user