LeviLamina
Loading...
Searching...
No Matches
ModelPartLocator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Matrix.h"
7#include "mc/deps/core/math/Vec3.h"
8#include "mc/deps/core/string/HashedString.h"
9#include "mc/world/actor/SkeletalHierarchyIndex.h"
10
11class ModelPartLocator {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<4, 4, ::SkeletalHierarchyIndex> mSkeletalHierarchyIndex;
16 ::ll::TypedStorage<4, 4, int> mBoneMapping;
17 ::ll::TypedStorage<8, 48, ::HashedString> mBoneName;
18 ::ll::TypedStorage<8, 48, ::HashedString> mName;
19 ::ll::TypedStorage<4, 12, ::Vec3> mOffset;
20 ::ll::TypedStorage<4, 12, ::Vec3> mPosition;
21 ::ll::TypedStorage<4, 12, ::Vec3> mRotation;
22 ::ll::TypedStorage<1, 1, bool> mIgnoreInheritedScale;
23 ::ll::TypedStorage<4, 64, ::Matrix> mWorldAbsoluteTransform;
24 // NOLINTEND
25
26#ifdef LL_PLAT_S
27#else // LL_PLAT_C
28public:
29 // prevent constructor by default
30 ModelPartLocator();
31
32#endif
33public:
34 // member functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_C
37 MCAPI ModelPartLocator(::ModelPartLocator const&);
38
39 MCAPI ModelPartLocator(
40 ::std::string const& name,
41 ::std::string const& boneName,
42 ::Vec3 const& localOffset,
43 bool ignoreInheritedScale
44 );
45
46 MCAPI bool compare(::ModelPartLocator const& rhs, bool compareSkeletalHierarchyIndexAndBoneMapping) const;
47
48 MCAPI ::ModelPartLocator& operator=(::ModelPartLocator const&);
49
50 MCAPI ~ModelPartLocator();
51#endif
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57#ifdef LL_PLAT_C
58 MCAPI void* $ctor(::ModelPartLocator const&);
59
60 MCAPI void* $ctor(
61 ::std::string const& name,
62 ::std::string const& boneName,
63 ::Vec3 const& localOffset,
64 bool ignoreInheritedScale
65 );
66#endif
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72#ifdef LL_PLAT_C
73 MCFOLD void $dtor();
74#endif
75 // NOLINTEND
76};
Definition Vec3.h:10