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