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
26public:
27 // prevent constructor by default
28 ModelPartLocator();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI_C ModelPartLocator(::ModelPartLocator const&);
34
35 MCAPI_C ModelPartLocator(
36 ::std::string const& name,
37 ::std::string const& boneName,
38 ::Vec3 const& localOffset,
39 bool ignoreInheritedScale
40 );
41
42 MCAPI_C bool compare(::ModelPartLocator const& rhs, bool compareSkeletalHierarchyIndexAndBoneMapping) const;
43
44 MCAPI_C ::ModelPartLocator& operator=(::ModelPartLocator const&);
45
46 MCAPI_C ~ModelPartLocator();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI_C void* $ctor(::ModelPartLocator const&);
53
54 MCAPI_C void* $ctor(
55 ::std::string const& name,
56 ::std::string const& boneName,
57 ::Vec3 const& localOffset,
58 bool ignoreInheritedScale
59 );
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCFOLD_C void $dtor();
66 // NOLINTEND
67};
Definition Vec3.h:10