LeviLamina
Loading...
Searching...
No Matches
EmitterShapeEntityAABBComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/particlesystem/particle/components/EmitterShapeComponentBase.h"
7#include "mc/util/molang/ExpressionNode.h"
8
9// auto generated forward declare list
10// clang-format off
11class RenderParams;
12class Vec3;
14namespace ParticleSystem { class ComponentAccessParticleEmitter; }
15namespace SharedTypes::v1_20_80 { struct ParticleEffectComponent; }
16// clang-format on
17
18namespace ParticleSystem {
19
20class EmitterShapeEntityAABBComponent : public ::ParticleSystem::EmitterShapeComponentBase {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 48, ::ExpressionNode[3]> mDirectionExpr;
25 ::ll::TypedStorage<1, 1, bool> mDirectionInwards;
26 ::ll::TypedStorage<1, 1, bool> mDirectionOutwards;
27 ::ll::TypedStorage<1, 1, bool> mSurfaceOnly;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void initializeFromData(::SharedTypes::v1_20_80::ParticleEffectComponent& data) /*override*/;
34
35 virtual void upgradeToSharedTypes(::SharedTypes::v1_20_80::ParticleEffectComponent& data) /*override*/;
36
37 virtual void parseJson(::ConstDeserializeDataParams const& deserializeDataParams) /*override*/;
38
39 virtual void getNextParticleSpawnOffsetAndDirection(
40 ::Vec3& offset,
41 ::Vec3& direction,
42 ::ParticleSystem::ComponentAccessParticleEmitter const& emitter,
43 ::RenderParams& renderParams
44 ) /*override*/;
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI void $initializeFromData(::SharedTypes::v1_20_80::ParticleEffectComponent& data);
51
52 MCAPI void $upgradeToSharedTypes(::SharedTypes::v1_20_80::ParticleEffectComponent& data);
53
54 MCAPI void $parseJson(::ConstDeserializeDataParams const& deserializeDataParams);
55
56 MCAPI void $getNextParticleSpawnOffsetAndDirection(
57 ::Vec3& offset,
58 ::Vec3& direction,
59 ::ParticleSystem::ComponentAccessParticleEmitter const& emitter,
60 ::RenderParams& renderParams
61 );
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
70
71} // namespace ParticleSystem
Definition ComponentAccessParticleEmitter.h:7
Definition EmitterShapeEntityAABBComponent.h:7
Definition RenderParams.h:30
Definition Vec3.h:10
Definition ConstDeserializeDataParams.h:13
Definition ParticleEffectComponent.h:12