LeviLamina
Loading...
Searching...
No Matches
FlockingDefinition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/json_util/JsonSchemaObjectNode.h"
7
8// auto generated forward declare list
9// clang-format off
10class EntityContext;
12namespace JsonUtil { class EmptyClass; }
13// clang-format on
14
15class FlockingDefinition {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<1, 1, bool> mInWater;
20 ::ll::TypedStorage<1, 1, bool> mMatchVariant;
21 ::ll::TypedStorage<1, 1, bool> mUseCenterOfMass;
22 ::ll::TypedStorage<4, 4, int> mLowFlockLimit;
23 ::ll::TypedStorage<4, 4, int> mHighFlockLimit;
24 ::ll::TypedStorage<4, 4, float> mGoalWeight;
25 ::ll::TypedStorage<4, 4, float> mLonerChance;
26 ::ll::TypedStorage<4, 4, float> mInfluenceRadius;
27 ::ll::TypedStorage<4, 4, float> mBreachInfluence;
28 ::ll::TypedStorage<4, 4, float> mSeparationWeight;
29 ::ll::TypedStorage<4, 4, float> mSeparationThreshold;
30 ::ll::TypedStorage<4, 4, float> mCohesionWeight;
31 ::ll::TypedStorage<4, 4, float> mCohesionThreshold;
32 ::ll::TypedStorage<4, 4, float> mInnerCohesionThres;
33 ::ll::TypedStorage<4, 4, float> mMinHeight;
34 ::ll::TypedStorage<4, 4, float> mMaxHeight;
35 ::ll::TypedStorage<4, 4, float> mBlockDistance;
36 ::ll::TypedStorage<4, 4, float> mBlockWeight;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI FlockingDefinition();
43
44 MCAPI void initialize(::EntityContext& entity, ::FlockingComponent& component) const;
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static void buildSchema(
52 );
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor();
59 // NOLINTEND
60};
Definition EntityContext.h:17
Definition FlockingComponent.h:15
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8