LeviLamina
Loading...
Searching...
No Matches
SeatDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/util/molang/ExpressionNode.h"
8
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 12, ::Vec3> mPosition;
14 ::ll::TypedStorage<4, 4, int> mMinSeatCount;
15 ::ll::TypedStorage<4, 4, int> mMaxSeatCount;
16 ::ll::TypedStorage<1, 1, bool> mHasSeatRotation;
17 ::ll::TypedStorage<8, 16, ::ExpressionNode> mSeatRotation;
18 ::ll::TypedStorage<1, 1, bool> mLockPassengerRotation;
19 ::ll::TypedStorage<4, 4, float> mLockPassengerRotationDegrees;
20 ::ll::TypedStorage<4, 8, ::std::optional<float>> mThirdPersonCameraRadiusOverride;
21 ::ll::TypedStorage<4, 8, ::std::optional<float>> mCameraRelaxDistanceSmoothing;
22 // NOLINTEND
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI void addRotationExpressionNode(::ExpressionNode const& node);
28
29 MCAPI bool operator==(::SeatDescription const& seat) const;
30
31 MCAPI void setCameraRelaxDistanceSmoothing(float const& value);
32
33 MCAPI void setThirdPersonCamerRadiusOverride(float const& value);
34 // NOLINTEND
35
36public:
37 // static variables
38 // NOLINTBEGIN
39 MCAPI static ::SeatDescription const& EMPTY();
40 // NOLINTEND
41};
Definition ExpressionNode.h:35
Definition SeatDescription.h:9