LeviLamina
Loading...
Searching...
No Matches
CameraTargetComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec2.h"
7#include "mc/deps/core/math/Vec3.h"
8#include "mc/deps/game_refs/WeakRef.h"
9
10// auto generated forward declare list
11// clang-format off
12class EntityContext;
13// clang-format on
14
15namespace MinecraftCamera {
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> mIsOutOfRange;
22 ::ll::TypedStorage<1, 1, bool> mSnappedToTarget;
23 ::ll::TypedStorage<1, 1, bool> mFoundActor;
24 ::ll::TypedStorage<8, 8, int64> mTargetActorId;
25 ::ll::TypedStorage<4, 8, ::Vec2> mCurrentRotation;
26 ::ll::TypedStorage<4, 8, ::Vec2> mInitialRotation;
27 ::ll::TypedStorage<4, 8, ::Vec2> mVerticalRotationLimits;
28 ::ll::TypedStorage<4, 8, ::Vec2> mOffset2DRotation;
29 ::ll::TypedStorage<4, 12, ::Vec3> mAverageRotLimitOrientation;
30 ::ll::TypedStorage<4, 12, ::Vec3> mCurrentCameraOrientation;
31 ::ll::TypedStorage<4, 12, ::Vec3> mInitialCameraOrientation;
32 ::ll::TypedStorage<4, 12, ::Vec3> mInitialTargetCenterOffset;
33 ::ll::TypedStorage<4, 12, ::Vec3> mTargetCenterOffset;
34 ::ll::TypedStorage<8, 24, ::WeakRef<::EntityContext>> mTargetEntity;
35 // NOLINTEND
36
37public:
38 // prevent constructor by default
39 CameraTargetComponent& operator=(CameraTargetComponent const&);
40 CameraTargetComponent(CameraTargetComponent const&);
41 CameraTargetComponent();
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI ::MinecraftCamera::CameraTargetComponent& operator=(::MinecraftCamera::CameraTargetComponent&&);
47 // NOLINTEND
48};
49
50} // namespace MinecraftCamera
Definition EntityContext.h:16
Definition CameraTargetComponent.h:7