LeviLamina
Loading...
Searching...
No Matches
EmitterShapePointComponent.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 EmitterShapePointComponent : public ::ParticleSystem::EmitterShapeComponentBase {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 48, ::ExpressionNode[3]> mOffsetExpr;
25 ::ll::TypedStorage<8, 48, ::ExpressionNode[3]> mDirectionExpr;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual void initializeFromData(::SharedTypes::v1_20_80::ParticleEffectComponent& data) /*override*/;
32
33 virtual void upgradeToSharedTypes(::SharedTypes::v1_20_80::ParticleEffectComponent& data) /*override*/;
34
35 virtual void parseJson(::ConstDeserializeDataParams const& deserializeDataParams) /*override*/;
36
37 virtual void getNextParticleSpawnOffsetAndDirection(
38 ::Vec3& offset,
39 ::Vec3& direction,
40 ::ParticleSystem::ComponentAccessParticleEmitter const& emitter,
41 ::RenderParams& renderParams
42 ) /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI EmitterShapePointComponent();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI void $initializeFromData(::SharedTypes::v1_20_80::ParticleEffectComponent& data);
61
62 MCAPI void $upgradeToSharedTypes(::SharedTypes::v1_20_80::ParticleEffectComponent& data);
63
64 MCAPI void $parseJson(::ConstDeserializeDataParams const& deserializeDataParams);
65
66 MCAPI void $getNextParticleSpawnOffsetAndDirection(
67 ::Vec3& offset,
68 ::Vec3& direction,
69 ::ParticleSystem::ComponentAccessParticleEmitter const& emitter,
70 ::RenderParams& renderParams
71 );
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace ParticleSystem
Definition ComponentAccessParticleEmitter.h:7
Definition EmitterShapePointComponent.h:7
Definition RenderParams.h:30
Definition Vec3.h:10
Definition ConstDeserializeDataParams.h:13
Definition ParticleEffectComponent.h:12