mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
43 lines
1.6 KiB
C++
43 lines
1.6 KiB
C++
#pragma once
|
|
#include "source2sdk/animgraphlib/CAnimParamHandle.hpp"
|
|
#include "source2sdk/animgraphlib/CSequenceUpdateNode.hpp"
|
|
#include "source2sdk/animgraphlib/JumpCorrectionMethod.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animgraphlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0xd8
|
|
// Has VTable
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CJumpHelperUpdateNode : public animgraphlib::CSequenceUpdateNode
|
|
{
|
|
public:
|
|
animgraphlib::CAnimParamHandle m_hTargetParam; // 0xb0
|
|
[[maybe_unused]] std::uint8_t pad_0xb2[0x2]; // 0xb2
|
|
Vector m_flOriginalJumpMovement; // 0xb4
|
|
float m_flOriginalJumpDuration; // 0xc0
|
|
float m_flJumpStartCycle; // 0xc4
|
|
float m_flJumpEndCycle; // 0xc8
|
|
animgraphlib::JumpCorrectionMethod m_eCorrectionMethod; // 0xcc
|
|
bool m_bTranslationAxis[3]; // 0xd0
|
|
bool m_bScaleSpeed; // 0xd3
|
|
[[maybe_unused]] std::uint8_t pad_0xd4[0x4];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CJumpHelperUpdateNode because it is not a standard-layout class
|
|
static_assert(sizeof(CJumpHelperUpdateNode) == 0xd8);
|
|
};
|