source2sdk/sdk/particles.hpp

10041 lines
302 KiB
C++
Raw Normal View History

2023-03-15 15:20:35 +00:00
#pragma once
#include <cstdint>
#include "!GlobalTypes.hpp"
///////////////////////////////////////////
// Binary: particles.dll
2023-03-15 19:24:28 +00:00
// Class Count: 379
// Enum Count: 32
2023-03-15 15:20:35 +00:00
///////////////////////////////////////////
2023-03-15 17:43:32 +00:00
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 7
enum class Detail2Combo_t : uint32_t
{
DETAIL_2_COMBO_UNINITIALIZED = 0xffffffffffffffff,
DETAIL_2_COMBO_OFF = 0x0,
DETAIL_2_COMBO_ADD = 0x1,
DETAIL_2_COMBO_ADD_SELF_ILLUM = 0x2,
DETAIL_2_COMBO_MOD2X = 0x3,
DETAIL_2_COMBO_MUL = 0x4,
DETAIL_2_COMBO_CROSSFADE = 0x5,
};
// Aligment: 4
// Size: 17
2023-03-15 17:43:32 +00:00
enum class ParticleAttachment_t : uint32_t
{
PATTACH_INVALID = 0xffffffffffffffff,
PATTACH_ABSORIGIN = 0x0,
PATTACH_ABSORIGIN_FOLLOW = 0x1,
PATTACH_CUSTOMORIGIN = 0x2,
PATTACH_CUSTOMORIGIN_FOLLOW = 0x3,
PATTACH_POINT = 0x4,
PATTACH_POINT_FOLLOW = 0x5,
PATTACH_EYES_FOLLOW = 0x6,
PATTACH_OVERHEAD_FOLLOW = 0x7,
PATTACH_WORLDORIGIN = 0x8,
PATTACH_ROOTBONE_FOLLOW = 0x9,
PATTACH_RENDERORIGIN_FOLLOW = 0xa,
PATTACH_MAIN_VIEW = 0xb,
PATTACH_WATERWAKE = 0xc,
PATTACH_CENTER_FOLLOW = 0xd,
2023-03-15 19:24:28 +00:00
PATTACH_CUSTOM_GAME_STATE_1 = 0xe,
MAX_PATTACH_TYPES = 0xf,
2023-03-15 17:43:32 +00:00
};
// Aligment: 4
2023-03-15 18:34:46 +00:00
// Size: 6
enum class ParticleImpulseType_t : uint32_t
2023-03-15 17:43:32 +00:00
{
2023-03-15 18:34:46 +00:00
IMPULSE_TYPE_NONE = 0x0,
IMPULSE_TYPE_GENERIC = 0x1,
IMPULSE_TYPE_ROPE = 0x2,
IMPULSE_TYPE_EXPLOSION = 0x4,
IMPULSE_TYPE_EXPLOSION_UNDERWATER = 0x8,
IMPULSE_TYPE_PARTICLE_SYSTEM = 0x10,
};
// Aligment: 4
// Size: 3
enum class ParticleFalloffFunction_t : uint32_t
{
PARTICLE_FALLOFF_CONSTANT = 0x0,
PARTICLE_FALLOFF_LINEAR = 0x1,
PARTICLE_FALLOFF_EXPONENTIAL = 0x2,
};
// Aligment: 4
// Size: 3
enum class AnimationType_t : uint32_t
{
ANIMATION_TYPE_FIXED_RATE = 0x0,
ANIMATION_TYPE_FIT_LIFETIME = 0x1,
ANIMATION_TYPE_MANUAL_FRAMES = 0x2,
};
2023-03-15 18:56:19 +00:00
// Aligment: 4
// Size: 13
enum class SequenceCombineMode_t : uint32_t
{
SEQUENCE_COMBINE_MODE_USE_SEQUENCE_0 = 0x0,
SEQUENCE_COMBINE_MODE_USE_SEQUENCE_1 = 0x1,
SEQUENCE_COMBINE_MODE_AVERAGE = 0x2,
SEQUENCE_COMBINE_MODE_ADDITIVE = 0x3,
SEQUENCE_COMBINE_MODE_ALPHA_FROM0_RGB_FROM_1 = 0x4,
SEQUENCE_COMBINE_MODE_ALPHA_FROM1_RGB_FROM_0 = 0x5,
SEQUENCE_COMBINE_MODE_WEIGHTED_BLEND = 0x6,
SEQUENCE_COMBINE_MODE_ALPHA_BLEND_1_OVER_0 = 0x7,
SEQUENCE_COMBINE_MODE_REPLICATEALPHA0 = 0x8,
SEQUENCE_COMBINE_MODE_REPLICATEALPHA1 = 0x9,
SEQUENCE_COMBINE_MODE_ALPHA_BLEND_0_OVER_1 = 0xa,
SEQUENCE_COMBINE_MODE_REPLICATE_COLOR_0 = 0xb,
SEQUENCE_COMBINE_MODE_REPLICATE_COLOR_1 = 0xc,
};
2023-03-15 17:43:32 +00:00
// Aligment: 4
// Size: 3
enum class PetGroundType_t : uint32_t
{
PET_GROUND_NONE = 0x0,
PET_GROUND_GRID = 0x1,
PET_GROUND_PLANE = 0x2,
};
// Aligment: 4
// Size: 5
enum class ParticleTopology_t : uint32_t
{
PARTICLE_TOPOLOGY_POINTS = 0x0,
PARTICLE_TOPOLOGY_LINES = 0x1,
PARTICLE_TOPOLOGY_TRIS = 0x2,
PARTICLE_TOPOLOGY_QUADS = 0x3,
PARTICLE_TOPOLOGY_CUBES = 0x4,
};
2023-03-15 18:34:46 +00:00
// Aligment: 4
// Size: 4
enum class ParticleDetailLevel_t : uint32_t
{
PARTICLEDETAIL_LOW = 0x0,
PARTICLEDETAIL_MEDIUM = 0x1,
PARTICLEDETAIL_HIGH = 0x2,
PARTICLEDETAIL_ULTRA = 0x3,
};
// Aligment: 4
// Size: 5
enum class ParticleCollisionMode_t : uint32_t
{
COLLISION_MODE_PER_PARTICLE_TRACE = 0x3,
COLLISION_MODE_USE_NEAREST_TRACE = 0x2,
COLLISION_MODE_PER_FRAME_PLANESET = 0x1,
COLLISION_MODE_INITIAL_TRACE_DOWN = 0x0,
COLLISION_MODE_DISABLED = 0xffffffffffffffff,
};
2023-03-15 17:43:32 +00:00
// Aligment: 4
// Size: 5
enum class ParticleColorBlendMode_t : uint32_t
{
PARTICLEBLEND_DEFAULT = 0x0,
PARTICLEBLEND_OVERLAY = 0x1,
PARTICLEBLEND_DARKEN = 0x2,
PARTICLEBLEND_LIGHTEN = 0x3,
PARTICLEBLEND_MULTIPLY = 0x4,
};
2023-03-15 18:34:46 +00:00
// Aligment: 4
// Size: 8
2023-03-15 17:43:32 +00:00
enum class ScalarExpressionType_t : uint32_t
{
SCALAR_EXPRESSION_UNINITIALIZED = 0xffffffffffffffff,
SCALAR_EXPRESSION_ADD = 0x0,
SCALAR_EXPRESSION_SUBTRACT = 0x1,
SCALAR_EXPRESSION_MUL = 0x2,
SCALAR_EXPRESSION_DIVIDE = 0x3,
SCALAR_EXPRESSION_INPUT_1 = 0x4,
2023-03-15 18:34:46 +00:00
SCALAR_EXPRESSION_MIN = 0x5,
SCALAR_EXPRESSION_MAX = 0x6,
};
// Aligment: 4
// Size: 9
enum class VectorExpressionType_t : uint32_t
{
VECTOR_EXPRESSION_UNINITIALIZED = 0xffffffffffffffff,
VECTOR_EXPRESSION_ADD = 0x0,
VECTOR_EXPRESSION_SUBTRACT = 0x1,
VECTOR_EXPRESSION_MUL = 0x2,
VECTOR_EXPRESSION_DIVIDE = 0x3,
VECTOR_EXPRESSION_INPUT_1 = 0x4,
VECTOR_EXPRESSION_MIN = 0x5,
VECTOR_EXPRESSION_MAX = 0x6,
VECTOR_EXPRESSION_NORMALIZE_INPUT_1 = 0x7,
};
// Aligment: 4
// Size: 3
enum class MissingParentInheritBehavior_t : uint32_t
{
MISSING_PARENT_DO_NOTHING = 0xffffffffffffffff,
MISSING_PARENT_KILL = 0x0,
MISSING_PARENT_FIND_NEW = 0x1,
2023-03-15 17:43:32 +00:00
};
// Aligment: 4
// Size: 2
enum class HitboxLerpType_t : uint32_t
{
HITBOX_LERP_LIFETIME = 0x0,
HITBOX_LERP_CONSTANT = 0x1,
};
2023-03-15 18:34:46 +00:00
// Aligment: 4
// Size: 3
enum class ParticleSelection_t : uint32_t
{
PARTICLE_SELECTION_FIRST = 0x0,
PARTICLE_SELECTION_LAST = 0x1,
PARTICLE_SELECTION_NUMBER = 0x2,
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 10
2023-03-15 18:34:46 +00:00
enum class ParticlePinDistance_t : uint32_t
{
PARTICLE_PIN_DISTANCE_NONE = 0xffffffffffffffff,
PARTICLE_PIN_DISTANCE_NEIGHBOR = 0x0,
PARTICLE_PIN_DISTANCE_FARTHEST = 0x1,
PARTICLE_PIN_DISTANCE_FIRST = 0x2,
PARTICLE_PIN_DISTANCE_LAST = 0x3,
PARTICLE_PIN_DISTANCE_CENTER = 0x5,
PARTICLE_PIN_DISTANCE_CP = 0x6,
PARTICLE_PIN_DISTANCE_CP_PAIR_EITHER = 0x7,
PARTICLE_PIN_DISTANCE_CP_PAIR_BOTH = 0x8,
PARTICLE_PIN_SPEED = 0x9,
};
// Aligment: 4
2023-03-15 18:56:19 +00:00
// Size: 8
2023-03-15 18:34:46 +00:00
enum class ParticleColorBlendType_t : uint32_t
{
PARTICLE_COLOR_BLEND_MULTIPLY = 0x0,
2023-03-15 18:56:19 +00:00
PARTICLE_COLOR_BLEND_ADD = 0x1,
PARTICLE_COLOR_BLEND_SUBTRACT = 0x2,
PARTICLE_COLOR_BLEND_MOD2X = 0x3,
PARTICLE_COLOR_BLEND_SCREEN = 0x4,
PARTICLE_COLOR_BLEND_MAX = 0x5,
PARTICLE_COLOR_BLEND_MIN = 0x6,
PARTICLE_COLOR_BLEND_REPLACE = 0x7,
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 18:56:19 +00:00
// Size: 5
2023-03-15 18:34:46 +00:00
enum class ParticleSetMethod_t : uint32_t
{
PARTICLE_SET_REPLACE_VALUE = 0x0,
PARTICLE_SET_SCALE_INITIAL_VALUE = 0x1,
PARTICLE_SET_ADD_TO_INITIAL_VALUE = 0x2,
2023-03-15 18:56:19 +00:00
PARTICLE_SET_SCALE_CURRENT_VALUE = 0x3,
PARTICLE_SET_ADD_TO_CURRENT_VALUE = 0x4,
2023-03-15 18:34:46 +00:00
};
2023-03-15 17:43:32 +00:00
// Aligment: 4
// Size: 6
enum class ParticleOrientationChoiceList_t : uint32_t
{
PARTICLE_ORIENTATION_SCREEN_ALIGNED = 0x0,
PARTICLE_ORIENTATION_SCREEN_Z_ALIGNED = 0x1,
PARTICLE_ORIENTATION_WORLD_Z_ALIGNED = 0x2,
PARTICLE_ORIENTATION_ALIGN_TO_PARTICLE_NORMAL = 0x3,
PARTICLE_ORIENTATION_SCREENALIGN_TO_PARTICLE_NORMAL = 0x4,
PARTICLE_ORIENTATION_FULL_3AXIS_ROTATION = 0x5,
};
// Aligment: 4
// Size: 2
enum class BlurFilterType_t : uint32_t
{
BLURFILTER_GAUSSIAN = 0x0,
BLURFILTER_BOX = 0x1,
};
// Aligment: 4
// Size: 3
enum class ParticleLightTypeChoiceList_t : uint32_t
{
PARTICLE_LIGHT_TYPE_POINT = 0x0,
PARTICLE_LIGHT_TYPE_SPOT = 0x1,
PARTICLE_LIGHT_TYPE_FX = 0x2,
};
// Aligment: 4
// Size: 3
enum class ParticleDepthFeatheringMode_t : uint32_t
{
PARTICLE_DEPTH_FEATHERING_OFF = 0x0,
PARTICLE_DEPTH_FEATHERING_ON_OPTIONAL = 0x1,
PARTICLE_DEPTH_FEATHERING_ON_REQUIRED = 0x2,
};
// Aligment: 4
2023-03-15 18:34:46 +00:00
// Size: 4
enum class ParticleVRHandChoiceList_t : uint32_t
{
PARTICLE_VRHAND_LEFT = 0x0,
PARTICLE_VRHAND_RIGHT = 0x1,
PARTICLE_VRHAND_CP = 0x2,
PARTICLE_VRHAND_CP_OBJECT = 0x3,
};
// Aligment: 4
// Size: 2
enum class ParticleSortingChoiceList_t : uint32_t
{
PARTICLE_SORTING_NEAREST = 0x0,
PARTICLE_SORTING_CREATION_TIME = 0x1,
};
// Aligment: 4
// Size: 2
enum class TextureRepetitionMode_t : uint32_t
{
TEXTURE_REPETITION_PARTICLE = 0x0,
TEXTURE_REPETITION_PATH = 0x1,
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 17
2023-03-15 17:43:32 +00:00
enum class ParticleFloatType_t : uint32_t
{
PF_TYPE_INVALID = 0xffffffffffffffff,
PF_TYPE_LITERAL = 0x0,
PF_TYPE_RANDOM_UNIFORM = 0x1,
PF_TYPE_RANDOM_BIASED = 0x2,
PF_TYPE_COLLECTION_AGE = 0x3,
2023-03-15 18:34:46 +00:00
PF_TYPE_ENDCAP_AGE = 0x4,
PF_TYPE_CONTROL_POINT_COMPONENT = 0x5,
PF_TYPE_CONTROL_POINT_CHANGE_AGE = 0x6,
PF_TYPE_PARTICLE_DETAIL_LEVEL = 0x7,
2023-03-15 19:24:28 +00:00
PF_TYPE_PARTICLE_AGE = 0x8,
PF_TYPE_PARTICLE_AGE_NORMALIZED = 0x9,
PF_TYPE_PARTICLE_FLOAT = 0xa,
PF_TYPE_PARTICLE_VECTOR_COMPONENT = 0xb,
PF_TYPE_PARTICLE_SPEED = 0xc,
PF_TYPE_PARTICLE_NUMBER = 0xd,
PF_TYPE_PARTICLE_NUMBER_NORMALIZED = 0xe,
PF_TYPE_COUNT = 0xf,
2023-03-15 17:43:32 +00:00
};
// Aligment: 4
// Size: 5
enum class ParticleFloatBiasType_t : uint32_t
{
PF_BIAS_TYPE_INVALID = 0xffffffffffffffff,
PF_BIAS_TYPE_STANDARD = 0x0,
PF_BIAS_TYPE_GAIN = 0x1,
PF_BIAS_TYPE_EXPONENTIAL = 0x2,
PF_BIAS_TYPE_COUNT = 0x3,
};
// Aligment: 4
// Size: 4
enum class ParticleFloatRandomMode_t : uint32_t
{
PF_RANDOM_MODE_INVALID = 0xffffffffffffffff,
PF_RANDOM_MODE_CONSTANT = 0x0,
PF_RANDOM_MODE_VARYING = 0x1,
PF_RANDOM_MODE_COUNT = 0x2,
};
2023-03-15 18:34:46 +00:00
// Aligment: 4
// Size: 4
enum class ParticleFloatInputMode_t : uint32_t
{
PF_INPUT_MODE_INVALID = 0xffffffffffffffff,
PF_INPUT_MODE_CLAMPED = 0x0,
PF_INPUT_MODE_LOOPED = 0x1,
PF_INPUT_MODE_COUNT = 0x2,
};
2023-03-15 17:43:32 +00:00
// Aligment: 4
// Size: 7
enum class ParticleFloatMapType_t : uint32_t
{
PF_MAP_TYPE_INVALID = 0xffffffffffffffff,
PF_MAP_TYPE_DIRECT = 0x0,
PF_MAP_TYPE_MULT = 0x1,
PF_MAP_TYPE_REMAP = 0x2,
PF_MAP_TYPE_REMAP_BIASED = 0x3,
PF_MAP_TYPE_CURVE = 0x4,
PF_MAP_TYPE_COUNT = 0x5,
};
2023-03-15 18:34:46 +00:00
// Aligment: 4
// Size: 12
enum class ParticleVecType_t : uint32_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 18:34:46 +00:00
PVEC_TYPE_INVALID = 0xffffffffffffffff,
PVEC_TYPE_LITERAL = 0x0,
PVEC_TYPE_LITERAL_COLOR = 0x1,
PVEC_TYPE_PARTICLE_VECTOR = 0x2,
PVEC_TYPE_CP_VALUE = 0x3,
PVEC_TYPE_CP_RELATIVE_POSITION = 0x4,
PVEC_TYPE_CP_RELATIVE_DIR = 0x5,
PVEC_TYPE_FLOAT_COMPONENTS = 0x6,
PVEC_TYPE_FLOAT_INTERP_CLAMPED = 0x7,
PVEC_TYPE_FLOAT_INTERP_OPEN = 0x8,
PVEC_TYPE_FLOAT_INTERP_GRADIENT = 0x9,
PVEC_TYPE_COUNT = 0xa,
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 3
// Size: 16
struct MaterialVariable_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material variable"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
CUtlString m_strVariable; // 0x0
// MPropertyFriendlyName "particle field"
2023-03-15 17:25:55 +00:00
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 18:34:46 +00:00
ParticleAttributeIndex_t m_nVariableField; // 0x8
// MPropertyFriendlyName "scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flScale; // 0xc
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 2
// Size: 16
struct ParticlePreviewBodyGroup_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
CUtlString m_bodyGroupName; // 0x0
int32_t m_nValue; // 0x8
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 15
// Size: 88
struct ParticlePreviewState_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
CUtlString m_previewModel; // 0x0
uint32_t m_nModSpecificData; // 0x8
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
PetGroundType_t m_groundType; // 0xc
CUtlString m_sequenceName; // 0x10
int32_t m_nFireParticleOnSequenceFrame; // 0x18
CUtlString m_hitboxSetName; // 0x20
CUtlString m_materialGroupName; // 0x28
CUtlVector< ParticlePreviewBodyGroup_t > m_vecBodyGroups; // 0x30
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flPlaybackSpeed; // 0x48
// MDefaultString
float m_flParticleSimulationRate; // 0x4c
bool m_bShouldDrawHitboxes; // 0x50
bool m_bShouldDrawAttachments; // 0x51
bool m_bShouldDrawAttachmentNames; // 0x52
bool m_bShouldDrawControlPointAxes; // 0x53
bool m_bAnimationNonLooping; // 0x54
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 6
// Size: 48
struct ParticleControlPointDriver_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
int32_t m_iControlPoint; // 0x0
ParticleAttachment_t m_iAttachType; // 0x4
CUtlString m_attachmentName; // 0x8
Vector m_vecOffset; // 0x10
QAngle m_angOffset; // 0x1c
CUtlString m_entityName; // 0x28
};
// Aligment: 3
// Size: 120
struct ParticleControlPointConfiguration_t
{
public:
CUtlString m_name; // 0x0
CUtlVector< ParticleControlPointDriver_t > m_drivers; // 0x8
ParticlePreviewState_t m_previewState; // 0x20
2023-03-15 15:20:35 +00:00
};
2023-03-15 17:25:55 +00:00
// Aligment: 0
2023-03-15 18:34:46 +00:00
// Size: 16
class IParticleCollection
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
// Size: 8
class IControlPointEditorData
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
// Size: 8
class IParticleSystemDefinition
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 18
// Size: 68
class CParticleVisibilityInputs
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility camera depth bias"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flCameraBias; // 0x0
// MPropertyFriendlyName "visibility input minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flInputMin; // 0x4
// MPropertyFriendlyName "visibility input maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flInputMax; // 0x8
// MPropertyFriendlyName "visibility alpha scale minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flAlphaScaleMin; // 0xc
// MPropertyFriendlyName "visibility alpha scale maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flAlphaScaleMax; // 0x10
// MPropertyFriendlyName "visibility radius scale minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flRadiusScaleMin; // 0x14
// MPropertyFriendlyName "visibility radius scale maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flRadiusScaleMax; // 0x18
// MPropertyFriendlyName "visibility radius FOV scale base"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flRadiusScaleFOVBase; // 0x1c
// MPropertyFriendlyName "visibility proxy radius"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flProxyRadius; // 0x20
// MPropertyFriendlyName "visibility input distance minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flDistanceInputMin; // 0x24
// MPropertyFriendlyName "visibility input distance maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flDistanceInputMax; // 0x28
// MPropertyFriendlyName "visibility input dot minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flDotInputMin; // 0x2c
// MPropertyFriendlyName "visibility input dot maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flDotInputMax; // 0x30
// MPropertyFriendlyName "Visibility input dot use CP angles"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
bool m_bDotCPAngles; // 0x34
// MPropertyFriendlyName "Visibility input dot use Camera angles"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
bool m_bDotCameraAngles; // 0x35
// MPropertyFriendlyName "visibility unsupported hardware fallback value"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
float m_flNoPixelVisibilityFallback; // 0x38
// MPropertyFriendlyName "visibility proxy input control point number"
// MDefaultString
// MParticleAdvancedField
int32_t m_nCPin; // 0x3c
// MPropertyFriendlyName "visibility vr camera right eye"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
bool m_bRightEye; // 0x40
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 8
// Size: 64
class CPathParameters
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nStartControlPointNumber; // 0x0
// MPropertyFriendlyName "end control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nEndControlPointNumber; // 0x4
// MPropertyFriendlyName "bulge control 0=random 1=orientation of start pnt 2=orientation of end point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nBulgeControl; // 0x8
// MPropertyFriendlyName "random bulge"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flBulge; // 0xc
// MPropertyFriendlyName "mid point position"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flMidPoint; // 0x10
// MPropertyFriendlyName "Offset from curve start point for path start"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
Vector m_vStartPointOffset; // 0x14
// MPropertyFriendlyName "Offset from curve midpoint for curve center"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
Vector m_vMidPointOffset; // 0x20
// MPropertyFriendlyName "Offset from control point for path end"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
Vector m_vEndOffset; // 0x2c
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 5
// Size: 32
struct ParticleChildrenInfo_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
// MDefaultString
2023-03-15 18:34:46 +00:00
CStrongHandle< InfoForResourceTypeIParticleSystemDefinition > m_ChildRef; // 0x0
// MPropertyFriendlyName "delay"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flDelay; // 0x8
// MPropertyFriendlyName "end cap effect"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
bool m_bEndCap; // 0xe
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "disable child"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
bool m_bDisableChild; // 0xf
// MPropertyFriendlyName "disable at detail levels below"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleDetailLevel_t m_nDetailLevel; // 0x10
};
// Aligment: 3
// Size: 20
struct ControlPointReference_t
{
public:
// MPropertyFriendlyName "Control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_controlPointNameString; // 0x0
// MPropertyFriendlyName "Offset from control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vOffsetFromControlPoint; // 0x4
// MPropertyFriendlyName "Use local space offset"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
bool m_bOffsetInLocalSpace; // 0x10
2023-03-15 15:20:35 +00:00
};
2023-03-15 17:25:55 +00:00
// Aligment: 2
2023-03-15 18:34:46 +00:00
// Size: 16
struct ModelReference_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model"
// MPropertyAttributeEditor "AssetBrowse( vmdl )"
CStrongHandle< InfoForResourceTypeCModel > m_model; // 0x0
// MPropertyFriendlyName "Relative probability"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flRelativeProbabilityOfSpawn; // 0x8
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 2
// Size: 8
struct CollisionGroupContext_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
int32_t m_nCollisionGroupNumber; // 0x0
ParticleCollisionMode_t m_nCollisionModeInternal; // 0x4
};
// Aligment: 3
// Size: 20
struct PointDefinition_t
{
public:
// MPropertyFriendlyName "Control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nControlPoint; // 0x0
// MPropertyFriendlyName "Use local coordinates for offset"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
bool m_bLocalCoords; // 0x4
// MPropertyFriendlyName "Offset from control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vOffset; // 0x8
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 1
// Size: 24
struct PointDefinitionWithTimeValues_t : public PointDefinition_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Duration value for path point"
// MDefaultString
float m_flTimeDuration; // 0x14
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 59
2023-03-15 18:34:46 +00:00
// Size: 848
class CParticleSystemDefinition : public IParticleSystemDefinition
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "version"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertySuppressField
int32_t m_nBehaviorVersion; // 0x8
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "pre emission operators"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionPreEmission* > m_PreEmissionOperators; // 0x10
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "emitters"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionEmitter* > m_Emitters; // 0x28
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "initializers"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionInitializer* > m_Initializers; // 0x40
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "operators"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionOperator* > m_Operators; // 0x58
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "forces"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionForce* > m_ForceGenerators; // 0x70
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "constraints"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionConstraint* > m_Constraints; // 0x88
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "renderers"
2023-03-15 18:34:46 +00:00
CUtlVector< CParticleFunctionRenderer* > m_Renderers; // 0xa0
// MPropertySuppressField
CUtlVector< ParticleChildrenInfo_t > m_Children; // 0xb8
// MPropertySuppressField
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nFirstMultipleOverride_BackwardCompat; // 0x178
// MPropertyFriendlyName "initial particles"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nInitialParticles; // 0x17c
// MPropertyFriendlyName "max particles"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nMaxParticles; // 0x180
// MPropertyFriendlyName "bounding box min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
Vector m_BoundingBoxMin; // 0x1c0
// MPropertyFriendlyName "bounding box max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
Vector m_BoundingBoxMax; // 0x1cc
// MPropertyFriendlyName "snapshot control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nSnapshotControlPoint; // 0x1d8
// MPropertyFriendlyName "snapshot"
// MPropertyAttributeEditor "AssetBrowse( vsnap )"
CStrongHandle< InfoForResourceTypeIParticleSnapshot > m_hSnapshot; // 0x1e0
// MPropertyFriendlyName "target layer ID for rendering"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
CUtlSymbolLarge m_pszTargetLayerID; // 0x1e8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Topology"
// MDefaultString
ParticleTopology_t m_nTopology; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "reference replacement definition"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "AssetBrowse( vpcf )"
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
CStrongHandle< InfoForResourceTypeIParticleSystemDefinition > m_hReferenceReplacement; // 0x210
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull replacement definition"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "AssetBrowse( vpcf )"
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
CStrongHandle< InfoForResourceTypeIParticleSystemDefinition > m_pszCullReplacementName; // 0x218
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull radius"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flCullRadius; // 0x220
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull cost"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flCullFillCost; // 0x224
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nCullControlPoint; // 0x228
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fallback replacement definition"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "AssetBrowse( vpcf )"
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
CStrongHandle< InfoForResourceTypeIParticleSystemDefinition > m_hFallback; // 0x238
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fallback max count"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nFallbackMaxCount; // 0x240
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "low violence definition"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "AssetBrowse( vpcf )"
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
CStrongHandle< InfoForResourceTypeIParticleSystemDefinition > m_hLowViolenceDef; // 0x248
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
Color m_ConstantColor; // 0x250
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normal"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 18:56:19 +00:00
Vector m_ConstantNormal; // 0x254
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeRange "biased 0 500"
2023-03-15 18:56:19 +00:00
float m_flConstantRadius; // 0x260
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flConstantRotation; // 0x264
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation speed"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flConstantRotationSpeed; // 0x268
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flConstantLifespan; // 0x26c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sequence number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "SequencePicker( 1 )"
2023-03-15 18:56:19 +00:00
int32_t m_nConstantSequenceNumber; // 0x270
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sequence number 1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "SequencePicker( 2 )"
2023-03-15 18:56:19 +00:00
int32_t m_nConstantSequenceNumber1; // 0x274
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "group id"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
int32_t m_nGroupID; // 0x278
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum time step"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flMaximumTimeStep; // 0x27c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum sim tick rate"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flMaximumSimTime; // 0x280
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum sim tick rate"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flMinimumSimTime; // 0x284
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum simulation time step"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flMinimumTimeStep; // 0x288
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum rendered frames"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nMinimumFrames; // 0x28c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum CPU level"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nMinCPULevel; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum GPU level"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nMinGPULevel; // 0x294
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "view model effect"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
bool m_bViewModelEffect; // 0x298
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "screen space effect"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
bool m_bScreenSpaceEffect; // 0x299
CUtlVector< ParticleControlPointConfiguration_t > m_controlPointConfigurations; // 0x2b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "time to sleep when not drawn"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flNoDrawTimeToGoToSleep; // 0x2c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum draw distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flMaxDrawDistance; // 0x2cc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start fade distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flStartFadeDistance; // 0x2d0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum creation distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flMaxCreationDistance; // 0x2d4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to disable rendering if it is the camera"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nSkipRenderControlPoint; // 0x2d8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to only enable rendering if it is the camera"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nAllowRenderControlPoint; // 0x2dc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum free particles to aggregate"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
int32_t m_nAggregationMinAvailableParticles; // 0x2e0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "aggregation radius"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flAggregateRadius; // 0x2e4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "freeze simulation after time"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
float m_flStopSimulationAfterTime; // 0x2e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sort particles (DEPRECATED - USE RENDERER OPTION)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
bool m_bShouldSort; // 0x324
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "batch particle systems"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
bool m_bShouldBatch; // 0x325
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "depth sort bias"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
float m_flDepthSortBias; // 0x328
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "infinite bounds - don't cull"
// MDefaultString
2023-03-15 18:56:19 +00:00
bool m_bInfiniteBounds; // 0x32c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Hitboxes fall back to render bounds"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 18:56:19 +00:00
bool m_bShouldHitboxesFallbackToRenderBounds; // 0x32e
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 16
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Operator Fade"
// MPropertyFriendlyName "operator start fadein"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpStartFadeInTime; // 0x8
// MPropertyGroupName "Operator Fade"
// MPropertyFriendlyName "operator end fadein"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpEndFadeInTime; // 0xc
// MPropertyGroupName "Operator Fade"
// MPropertyFriendlyName "operator start fadeout"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpStartFadeOutTime; // 0x10
// MPropertyGroupName "Operator Fade"
// MPropertyFriendlyName "operator end fadeout"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpEndFadeOutTime; // 0x14
// MPropertyGroupName "Operator Fade"
// MPropertyFriendlyName "operator fade oscillate"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpFadeOscillatePeriod; // 0x18
// MPropertyGroupName "Operator Fade"
// MPropertyFriendlyName "normalize fade times to endcap"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
bool m_bNormalizeToStopTime; // 0x1c
// MPropertyGroupName "Time Offset"
// MPropertyFriendlyName "operator time offset min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpTimeOffsetMin; // 0x20
// MPropertyGroupName "Time Offset"
// MPropertyFriendlyName "operator time offset max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpTimeOffsetMax; // 0x24
// MPropertyGroupName "Time Offset"
// MPropertyFriendlyName "operator time offset seed"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
int32_t m_nOpTimeOffsetSeed; // 0x28
// MPropertyGroupName "Timescale Modifiers"
// MPropertyFriendlyName "operator time scale seed"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
int32_t m_nOpTimeScaleSeed; // 0x2c
// MPropertyGroupName "Timescale Modifiers"
// MPropertyFriendlyName "operator time scale min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpTimeScaleMin; // 0x30
// MPropertyGroupName "Timescale Modifiers"
// MPropertyFriendlyName "operator time scale max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
float m_flOpTimeScaleMax; // 0x34
2023-03-15 19:24:28 +00:00
// MPropertySortPriority "2147483647"
// MPropertyFriendlyName "disable"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
bool m_bDisableOperator; // 0x39
// MPropertyFriendlyName "operator end cap state"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
int32_t m_nOpEndCapState; // 0x3c
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Strength Modifiers"
// MPropertyFriendlyName "operator strength"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MParticleAdvancedField
2023-03-15 18:34:46 +00:00
CParticleCollectionFloatInput m_flOpStrength; // 0x40
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "operator help and notes"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleHelpField
2023-03-15 19:24:28 +00:00
CUtlString m_Notes; // 0xe8
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunctionInitializer : public CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunctionEmitter : public CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunctionConstraint : public CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunctionForce : public CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunctionOperator : public CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CParticleFunctionPreEmission : public CParticleFunctionOperator, CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 17:25:55 +00:00
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class CParticleFunctionRenderer : public CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MParticleAdvancedField
2023-03-15 19:24:28 +00:00
CParticleVisibilityInputs VisibilityInputs; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "I cannot be refracted through refracting objects like water"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Rendering filter"
2023-03-15 19:24:28 +00:00
bool m_bCannotBeRefracted; // 0x184
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Skip rendering on mobile"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Rendering filter"
2023-03-15 19:24:28 +00:00
bool m_bSkipRenderingOnMobile; // 0x185
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 50
2023-03-15 19:24:28 +00:00
// Size: 864
2023-03-15 18:34:46 +00:00
class CBaseRendererSource2 : public CParticleFunctionRenderer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "animation rate"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeRange "0 5"
2023-03-15 19:24:28 +00:00
float m_flAnimationRate; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "animation type"
// MDefaultString
2023-03-15 19:24:28 +00:00
AnimationType_t m_nAnimationType; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set animation value in FPS"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAnimateInFPS; // 0x198
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "light per vertex"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPerVertexLighting; // 0x199
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "self illum amount"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeRange "0 2"
2023-03-15 19:24:28 +00:00
float m_flSelfIllumAmount; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "diffuse lighting amount"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeRange "0 1"
2023-03-15 19:24:28 +00:00
float m_flDiffuseAmount; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "diffuse lighting origin Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLightingControlPoint; // 0x1a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "self illum per-particle"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nSelfIllumPerParticle; // 0x1a8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "source alpha value to map to alpha of zero"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeRange "0 1"
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
float m_flSourceAlphaValueToMapToZero; // 0x1ac
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "source alpha value to map to alpha of 1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeRange "0 1"
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
float m_flSourceAlphaValueToMapToOne; // 0x1b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Gamma-correct vertex colors"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bGammaCorrectVertexColors; // 0x1b4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Saturate color pre alphablend"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bSaturateColorPreAlphaBlend; // 0x1b5
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "dual sequence combine mode"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Dual sequence controls"
2023-03-15 19:24:28 +00:00
SequenceCombineMode_t m_nSequenceCombineMode; // 0x1b8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "second sequence animation rate"
// MDefaultString
// MPropertyAttributeRange "0 5"
// MPropertyGroupName "Dual sequence controls"
2023-03-15 19:24:28 +00:00
float m_flAnimationRate2; // 0x1bc
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "RGB blend weight for sequence 0"
2023-03-15 17:25:55 +00:00
// MDefaultString
// MPropertyAttributeRange "0 1"
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Dual sequence controls"
2023-03-15 19:24:28 +00:00
float m_flSequence0RGBWeight; // 0x1c0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "alpha blend weight for sequence 0"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeRange "0 1"
// MPropertyGroupName "Dual sequence controls"
2023-03-15 19:24:28 +00:00
float m_flSequence0AlphaWeight; // 0x1c4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "RGB blend weight for sequence 1"
// MDefaultString
// MPropertyAttributeRange "0 1"
// MPropertyGroupName "Dual sequence controls"
2023-03-15 19:24:28 +00:00
float m_flSequence1RGBWeight; // 0x1c8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "alpha blend weight for sequence 1"
// MDefaultString
// MPropertyAttributeRange "0 1"
// MPropertyGroupName "Dual sequence controls"
2023-03-15 19:24:28 +00:00
float m_flSequence1AlphaWeight; // 0x1cc
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "add self amount for combined additive and alpha blended"
2023-03-15 17:25:55 +00:00
// MDefaultString
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
float m_flAddSelfAmount; // 0x1d0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "use additive blending"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bAdditive; // 0x1d4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Additive alpha - write alpha during additive"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bAdditiveAlpha; // 0x1d5
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Mod2x blend mode"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bMod2X; // 0x1d6
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "'Lighten blend mode"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bLightenMode; // 0x1d7
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "use max-luminance blending for sequence 0"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bMaxLuminanceBlendingSequence0; // 0x1d8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "use max-luminance blending for sequence 1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bMaxLuminanceBlendingSequence1; // 0x1d9
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "refract background"
// MDefaultString
// MPropertyGroupName "Refraction"
2023-03-15 19:24:28 +00:00
bool m_bRefract; // 0x1da
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "refract amount"
// MDefaultString
// MPropertyAttributeRange "-2 2"
// MPropertyGroupName "Refraction"
2023-03-15 19:24:28 +00:00
float m_flRefractAmount; // 0x1dc
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "refract blur radius"
// MDefaultString
// MPropertyGroupName "Refraction"
2023-03-15 19:24:28 +00:00
int32_t m_nRefractBlurRadius; // 0x1e0
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "refract blur type"
// MDefaultString
// MPropertyGroupName "Refraction"
2023-03-15 19:24:28 +00:00
BlurFilterType_t m_nRefractBlurType; // 0x1e4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Only Render in effects bloom pass"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOnlyRenderInEffectsBloomPass; // 0x1e8
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "stencil test ID"
// MDefaultString
// MPropertyGroupName "Stencil"
2023-03-15 19:24:28 +00:00
char[128] m_stencilTestID; // 0x1e9
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only write where stencil is NOT stencil test ID"
// MDefaultString
// MPropertyGroupName "Stencil"
2023-03-15 19:24:28 +00:00
bool m_bStencilTestExclude; // 0x269
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "stencil write ID"
// MDefaultString
// MPropertyGroupName "Stencil"
2023-03-15 19:24:28 +00:00
char[128] m_stencilWriteID; // 0x26a
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "write stencil on z-buffer test success"
// MDefaultString
// MPropertyGroupName "Stencil"
2023-03-15 19:24:28 +00:00
bool m_bWriteStencilOnDepthPass; // 0x2ea
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "write stencil on z-buffer test failure"
// MDefaultString
// MPropertyGroupName "Stencil"
2023-03-15 19:24:28 +00:00
bool m_bWriteStencilOnDepthFail; // 0x2eb
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "reverse z-buffer test"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
bool m_bReverseZBuffering; // 0x2ec
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "disable z-buffer test"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
bool m_bDisableZBuffering; // 0x2ed
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "Depth feathering mode"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
ParticleDepthFeatheringMode_t m_nFeatheringMode; // 0x2f0
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "particle feathering closest distance to surface"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
float m_flFeatheringMinDist; // 0x2f4
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "particle feathering farthest distance to surface"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
float m_flFeatheringMaxDist; // 0x2f8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "overbright factor"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
float m_flOverbrightFactor; // 0x2fc
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "Apply fog of war to color"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bTintByFOW; // 0x300
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "Apply fog to particle"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bFogParticles; // 0x301
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "Apply global light to color"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Color and alpha adjustments"
2023-03-15 19:24:28 +00:00
bool m_bTintByGlobalLight; // 0x302
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
// MDefaultString
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_hTexture; // 0x308
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Apply motion vectors"
// MDefaultString
// MPropertyGroupName "Motion vectors"
2023-03-15 19:24:28 +00:00
bool m_bMotionVectors; // 0x310
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "motion vectors texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
// MPropertyGroupName "Motion vectors"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_hMotionVectorsTexture; // 0x318
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "blend sequence 0 animation frames"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bBlendFramesSeq0; // 0x320
// MPropertyFriendlyName "right eye first seq offset"
// MDefaultString
int32_t m_nFirstSequenceOffsetForRightEye; // 0x324
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "HSV Shift Control Point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHSVShiftControlPoint; // 0x328
2023-03-15 17:25:55 +00:00
};
2023-03-15 15:20:35 +00:00
2023-03-15 19:24:28 +00:00
// Aligment: 39
// Size: 2496
2023-03-15 18:34:46 +00:00
class C_OP_RenderSprites : public CBaseRendererSource2, CParticleFunctionRenderer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sequence id override"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSequenceOverride; // 0x360
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "orientation type"
2023-03-15 18:56:19 +00:00
// MPropertyAttributeChoiceEnumName
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOrientationType; // 0x364
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "orientation control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOrientationControlPoint; // 0x368
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "minimum visual size"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flMinSize; // 0x36c
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "maximum visual size"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flMaxSize; // 0x370
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Factor to map size adjustment to alpha"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flAlphaAdjustWithSizeAdjust; // 0x374
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "size at which to start fading"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flStartFadeSize; // 0x378
2023-03-15 17:25:55 +00:00
// MPropertyFriendlyName "size at which to fade away"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flEndFadeSize; // 0x420
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start dot product value for fading as the particle normal becomes aligned with the view vector"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flStartFadeDot; // 0x4c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end dot product value for fading as the particle normal becomes aligned with the view vector"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flEndFadeDot; // 0x4cc
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "depth comparison bias"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
float m_flDepthBias; // 0x4d0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "horizontal texture scale"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureScaleU; // 0x4d4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "vertical texture scale"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureScaleV; // 0x4d8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "horizontal texture offset"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureOffsetU; // 0x4dc
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "vertical texture offset"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureOffsetV; // 0x4e0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "X offset of center point"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flCenterXOffset; // 0x4e4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Y offset of center point"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flCenterYOffset; // 0x4e8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "intraframe zoom amount for sequence 0"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flZoomAmount0; // 0x4ec
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "intraframe zoom amount for sequence 1"
// MDefaultString
// MPropertyGroupName "Texture UV control"
2023-03-15 19:24:28 +00:00
float m_flZoomAmount1; // 0x4f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance alpha"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Distance to alpha coding"
2023-03-15 19:24:28 +00:00
bool m_bDistanceAlpha; // 0x4f4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use soft edges for distance alpha"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Distance to alpha coding"
2023-03-15 19:24:28 +00:00
bool m_bSoftEdges; // 0x4f5
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start value for soft edges for distance alpha"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Distance to alpha coding"
2023-03-15 19:24:28 +00:00
float m_flEdgeSoftnessStart; // 0x4f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end value for soft edges for distance alpha"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Distance to alpha coding"
2023-03-15 19:24:28 +00:00
float m_flEdgeSoftnessEnd; // 0x4fc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "enable particle outlining"
// MDefaultString
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
bool m_bOutline; // 0x500
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outline color"
// MDefaultString
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
Color m_OutlineColor; // 0x501
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outline alpha"
// MDefaultString
// MPropertyAttributeRange "0 255"
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
int32_t m_nOutlineAlpha; // 0x508
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outline start 0"
// MDefaultString
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
float m_flOutlineStart0; // 0x50c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outline start 1"
// MDefaultString
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
float m_flOutlineStart1; // 0x510
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outline end 0"
// MDefaultString
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
float m_flOutlineEnd0; // 0x514
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outline end 1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyGroupName "Outlining"
2023-03-15 19:24:28 +00:00
float m_flOutlineEnd1; // 0x518
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "enable yaw for particles aligned to normals"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseYawWithNormalAligned; // 0x51c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Normal Mapping"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalMap; // 0x51d
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Bump Strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBumpStrength; // 0x520
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Radius Scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRadiusScale; // 0x528
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flAlphaScale; // 0x5d0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend"
// MPropertyColorWithNoAlpha
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecColorScale; // 0x678
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleColorBlendType_t m_nColorBlendType; // 0x9a8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "normal texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_hNormalTexture; // 0x9b0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Sort Method"
// MPropertyAttributeChoiceEnumName
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSortMethod; // 0x9bc
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 176
2023-03-15 18:34:46 +00:00
struct FloatInputMaterialVariable_t
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material variable"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
CUtlString m_strVariable; // 0x0
// MPropertyFriendlyName "input"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
CParticleCollectionFloatInput m_flInput; // 0x8
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 824
2023-03-15 18:34:46 +00:00
struct VecInputMaterialVariable_t
{
public:
// MPropertyFriendlyName "material variable"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
CUtlString m_strVariable; // 0x0
// MPropertyFriendlyName "input"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
CParticleCollectionVecInput m_vecInput; // 0x8
};
2023-03-15 18:56:19 +00:00
// Aligment: 17
2023-03-15 19:24:28 +00:00
// Size: 1552
2023-03-15 18:34:46 +00:00
class C_OP_RenderCables : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "material"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeEditor "AssetBrowse( vmat )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeIMaterial2 > m_hMaterial; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "texture repetition mode"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
TextureRepetitionMode_t m_nTextureRepetitionMode; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "texture repetitions"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flTextureRepeatsPerSegment; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "texture repetitions around cable"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flTextureRepeatsCircumference; // 0x248
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color map offset along path"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flColorMapOffsetV; // 0x2f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color map offset around cable"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flColorMapOffsetU; // 0x398
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normal map offset along path"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flNormalMapOffsetV; // 0x440
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normal map offset around cable"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flNormalMapOffsetU; // 0x4e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "draw caps at each end of the cable"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDrawCableCaps; // 0x590
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cable end cap shape factor"
// MDefaultString
// MPropertyAttributeRange "0 2"
2023-03-15 19:24:28 +00:00
float m_flCapRoundness; // 0x594
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cable end cap offset amount"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeRange "0 2"
2023-03-15 19:24:28 +00:00
float m_flCapOffsetAmount; // 0x598
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tessellation scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTessScale; // 0x59c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum steps between particles"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMinTesselation; // 0x5a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum steps between particles"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxTesselation; // 0x5a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "roundness factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRoundness; // 0x5a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material float variables"
2023-03-15 19:24:28 +00:00
CUtlVector< FloatInputMaterialVariable_t > m_MaterialFloatVars; // 0x5b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material vector variables"
2023-03-15 19:24:28 +00:00
CUtlVector< VecInputMaterialVariable_t > m_MaterialVecVars; // 0x5e0
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
// Size: 64
class CPiecewiseCurveSchemaWrapper
{
public:
// <no members described>
};
2023-03-15 19:24:28 +00:00
// Aligment: 23
// Size: 168
2023-03-15 18:34:46 +00:00
class CParticleFloatInput
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleFloatType_t m_nType; // 0x0
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleFloatMapType_t m_nMapType; // 0x4
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flLiteralValue; // 0x8
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nControlPoint; // 0xc
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleAttributeIndex_t m_nScalarAttribute; // 0x10
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleAttributeIndex_t m_nVectorAttribute; // 0x14
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nVectorComponent; // 0x18
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flRandomMin; // 0x1c
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flRandomMax; // 0x20
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleFloatRandomMode_t m_nRandomMode; // 0x24
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flLOD0; // 0x2c
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flLOD1; // 0x30
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flLOD2; // 0x34
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
float m_flLOD3; // 0x38
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleFloatInputMode_t m_nInputMode; // 0x3c
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMultFactor; // 0x40
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInput0; // 0x44
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInput1; // 0x48
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutput0; // 0x4c
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutput1; // 0x50
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleFloatBiasType_t m_nBiasType; // 0x54
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBiasParameter; // 0x58
CPiecewiseCurveSchemaWrapper m_Curve; // 0x60
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 168
2023-03-15 18:34:46 +00:00
class CPerParticleFloatInput : public CParticleFloatInput
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 168
2023-03-15 18:34:46 +00:00
class CParticleCollectionFloatInput : public CParticleFloatInput
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// <no members described>
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 18
2023-03-15 19:24:28 +00:00
// Size: 816
2023-03-15 18:34:46 +00:00
class CParticleVecInput
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleVecType_t m_nType; // 0x0
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vLiteralValue; // 0x4
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Color m_LiteralColor; // 0x10
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
ParticleAttributeIndex_t m_nVectorAttribute; // 0x14
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vVectorAttributeScale; // 0x18
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
int32_t m_nControlPoint; // 0x24
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vCPValueScale; // 0x28
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vCPRelativePosition; // 0x34
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
Vector m_vCPRelativeDir; // 0x40
CParticleFloatInput m_FloatComponentX; // 0x50
2023-03-15 19:24:28 +00:00
CParticleFloatInput m_FloatComponentY; // 0xf8
CParticleFloatInput m_FloatComponentZ; // 0x1a0
CParticleFloatInput m_FloatInterp; // 0x248
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInterpInput0; // 0x2f0
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInterpInput1; // 0x2f4
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vInterpOutput0; // 0x2f8
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vInterpOutput1; // 0x304
CColorGradient m_Gradient; // 0x310
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 816
2023-03-15 18:34:46 +00:00
class CPerParticleVecInput : public CParticleVecInput
2023-03-15 15:20:35 +00:00
{
2023-03-15 17:25:55 +00:00
public:
2023-03-15 18:34:46 +00:00
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 816
2023-03-15 18:34:46 +00:00
class CParticleCollectionVecInput : public CParticleVecInput
{
public:
// <no members described>
};
// Aligment: 1
// Size: 4
class PARTICLE_EHANDLE__
{
public:
int32_t unused; // 0x0
};
// Aligment: 1
// Size: 4
class PARTICLE_WORLD_HANDLE__
{
public:
int32_t unused; // 0x0
};
// Aligment: 0
// Size: 8
class IParticleEffect
{
public:
// <no members described>
};
// Aligment: 0
// Size: 40
class CParticleProperty
{
public:
// <no members described>
};
2023-03-15 19:24:28 +00:00
// Aligment: 25
2023-03-15 18:34:46 +00:00
// Size: 184
class CNewParticleEffect : public IParticleEffect
{
public:
CNewParticleEffect* m_pNext; // 0x10
CNewParticleEffect* m_pPrev; // 0x18
IParticleCollection* m_pParticles; // 0x20
char* m_pDebugName; // 0x28
bitfield:1 m_bDontRemove; // 0x0
bitfield:1 m_bRemove; // 0x0
bitfield:1 m_bNeedsBBoxUpdate; // 0x0
bitfield:1 m_bIsFirstFrame; // 0x0
bitfield:1 m_bAutoUpdateBBox; // 0x0
bitfield:1 m_bAllocated; // 0x0
bitfield:1 m_bSimulate; // 0x0
bitfield:1 m_bShouldPerformCullCheck; // 0x0
bitfield:1 m_bForceNoDraw; // 0x0
bitfield:1 m_bDisableAggregation; // 0x0
bitfield:1 m_bShouldSimulateDuringGamePaused; // 0x0
2023-03-15 19:24:28 +00:00
bitfield:1 m_bShouldCheckFoW; // 0x0
2023-03-15 18:34:46 +00:00
Vector m_vSortOrigin; // 0x40
float m_flScale; // 0x4c
PARTICLE_EHANDLE__* m_hOwner; // 0x50
CParticleProperty* m_pOwningParticleProperty; // 0x58
Vector m_LastMin; // 0x70
Vector m_LastMax; // 0x7c
2023-03-15 19:24:28 +00:00
CSplitScreenSlot m_nSplitScreenUser; // 0x88
Vector m_vecAggregationCenter; // 0x8c
2023-03-15 18:34:46 +00:00
int32_t m_RefCount; // 0xb0
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_ConstrainDistance : public CParticleFunctionConstraint, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMinDistance; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMaxDistance; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance scale control point (X/Y = Min/Max)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset of center"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_CenterOffset; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "global center point"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bGlobalCenter; // 0x15c
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_ConstrainDistanceToPath : public CParticleFunctionConstraint, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMinDistance; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxDistance0; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum distance middle"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxDistanceMid; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum distance end"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxDistance1; // 0x14c
CPathParameters m_PathParameters; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "travel time"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTravelTime; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "travel time scale field"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldScale; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "manual time placement field"
2023-03-15 17:25:55 +00:00
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nManualTField; // 0x198
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_ConstrainDistanceToUserSpecifiedPath : public CParticleFunctionConstraint, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMinDistance; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxDistance; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Time scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTimeScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Treat path as a loop"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLoopedPath; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "path points"
2023-03-15 19:24:28 +00:00
CUtlVector< PointDefinitionWithTimeValues_t > m_pointList; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 688
2023-03-15 18:34:46 +00:00
class C_OP_PlanarConstraint : public CParticleFunctionConstraint, CParticleFunction
{
public:
// MPropertyFriendlyName "plane point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_PointOnPlane; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "plane normal"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_PlaneNormal; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "global origin"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bGlobalOrigin; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "global normal"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bGlobalNormal; // 0x15d
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flRadiusScale; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "falloff distance from control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flMaximumDistanceToCP; // 0x208
2023-03-15 18:34:46 +00:00
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class C_OP_WorldCollideConstraint : public CParticleFunctionConstraint, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 22
2023-03-15 19:24:28 +00:00
// Size: 1200
2023-03-15 18:34:46 +00:00
class C_OP_WorldTraceConstraint : public CParticleFunctionConstraint, CParticleFunction
{
public:
// MPropertyFriendlyName "control point for fast collision tests"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point offset for fast collisions"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCpOffset; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "collision mode"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleCollisionMode_t m_nCollisionMode; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum detail collision mode"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleCollisionMode_t m_nCollisionModeMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount of bounce"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flBounceAmount; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount of slide"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flSlideAmount; // 0x200
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusScale; // 0x2a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Random Direction scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flRandomDirScale; // 0x2b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point movement distance tolerance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCpMovementTolerance; // 0x358
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace accuracy tolerance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceTolerance; // 0x35c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum speed to kill on collision"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinSpeed; // 0x360
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Add Decay to Bounce"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDecayBounce; // 0x364
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "kill particle on collision"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bKillonContact; // 0x365
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Confirm Collision Speed Threshold"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCollisionConfirmationSpeed; // 0x368
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Set Normal"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetNormal; // 0x36c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Stick On Collision Cache Field"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nStickOnCollisionField; // 0x370
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Speed to stop when sticking"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flStopSpeed; // 0x378
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Entity Hitbox Cache Field (Requires Stick on Collision)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nEntityStickDataField; // 0x420
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "World Only"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bWorldOnly; // 0x424
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP Entity to Ignore for Collisions"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIgnoreCP; // 0x428
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x42c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "brush only"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bBrushOnly; // 0x4ac
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_BoxConstraint : public CParticleFunctionConstraint, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "min coords"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max coords"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use local space"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 1008
2023-03-15 18:34:46 +00:00
class C_OP_RopeSpringConstraint : public CParticleFunctionConstraint, CParticleFunction
{
public:
// MPropertyFriendlyName "slack"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRestLength; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum segment length %"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flMinDistance; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum segment length %"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flMaxDistance; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor for spring correction"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAdjustmentScale; // 0x338
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "manual resting spacing"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInitialRestingLength; // 0x340
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ConstrainLineLength : public CParticleFunctionConstraint, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum length"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinDistance; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum length"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxDistance; // 0x144
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 13
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_RingWave : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
// MPropertyFriendlyName "override CP (X/Y/Z *= radius/thickness/speed)"
// MDefaultString
int32_t m_nOverrideCP; // 0x144
// MPropertyFriendlyName "override CP 2 (X/Y/Z *= pitch/yaw/roll)"
// MDefaultString
int32_t m_nOverrideCP2; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "even distribution count"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flParticlesPerOrbit; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "initial radius"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInitialRadius; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "thickness"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flThickness; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "min initial speed"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInitialSpeedMin; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max initial speed"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInitialSpeedMax; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "roll"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRoll; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pitch"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPitch; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "yaw"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flYaw; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "even distribution"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEvenDistribution; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "XY velocity only"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bXYVelocityOnly; // 0x16d
};
// Aligment: 7
// Size: 352
class C_INIT_CreateSpiralSphere : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x140
// MPropertyFriendlyName "override CP (X/Y/Z *= radius/density/speed)"
// MDefaultString
int32_t m_nOverrideCP; // 0x144
// MPropertyFriendlyName "density"
// MDefaultString
int32_t m_nDensity; // 0x148
// MPropertyFriendlyName "initial radius"
// MDefaultString
float m_flInitialRadius; // 0x14c
// MPropertyFriendlyName "min initial speed"
// MDefaultString
float m_flInitialSpeedMin; // 0x150
// MPropertyFriendlyName "max initial speed"
// MDefaultString
float m_flInitialSpeedMax; // 0x154
// MPropertyFriendlyName "use particle count as density scale"
// MDefaultString
bool m_bUseParticleCount; // 0x158
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:56:19 +00:00
class C_INIT_CreateInEpitrochoid : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "first dimension 0-2 (-1 disables)"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nComponent1; // 0x140
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "second dimension 0-2 (-1 disables)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nComponent2; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale from conrol point (radius 1/radius 2/offset)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle density"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flParticleDensity; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "point offset"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffset; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius 1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadius1; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius 2"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadius2; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use particle count instead of creation time"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseCount; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseLocalCoords; // 0x161
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset from existing position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffsetExistingPos; // 0x162
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 14
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_CreatePhyllotaxis : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale size multiplier from CP"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale CP component 0/1/2 X/Y/Z"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nComponent; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "center core radius"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fRadCentCore; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius multiplier"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fRadPerPoint; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius max (-1 procedural growth)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fRadPerPointTo; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "golden angle (is 137.508)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fpointAngle; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "overall size multiplier (-1 count based distribution)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fsizeOverall; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fRadBias; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius min "
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMinRad; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Distribution Bias"
// MPropertyFriendlyName "distribution bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fDistBias; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseLocalCoords; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use continuous emission"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseWithContEmit; // 0x16d
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale radius from initial value"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseOrigRadius; // 0x16e
2023-03-15 17:25:55 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_INIT_CreateOnModel : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force to be inside model"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nForceInModel; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "desired hitbox"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nDesiredHitbox; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Control Point Providing Hitbox index"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHitboxValueFromControlPointIndex; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flHitBoxScale; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherited velocity scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBoneVelocity; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum inherited velocity"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxBoneVelocity; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "direction bias"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecDirectionBias; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "bias in local space"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalCoords; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x1e9
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 480
2023-03-15 18:34:46 +00:00
class C_INIT_CreateOnModelAtHeight : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force creation height to desired height"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bForceZ; // 0x141
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "height override control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHeightCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "desired height is relative to water"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseWaterHeight; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "relative desired height"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDesiredHeight; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model hitbox scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flHitBoxScale; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x158
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 464
2023-03-15 18:34:46 +00:00
class C_INIT_SetHitboxToClosest : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "desired hitbox"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nDesiredHitbox; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model hitbox scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flHitBoxScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x1cc
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 480
2023-03-15 18:34:46 +00:00
class C_INIT_SetHitboxToModel : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force to be inside model"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nForceInModel; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "desired hitbox"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nDesiredHitbox; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model hitbox scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flHitBoxScale; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "direction bias"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecDirectionBias; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maintain existing hitbox"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bMaintainHitbox; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x15d
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x15e
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 15
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_INIT_CreateWithinSphere : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fRadiusMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fRadiusMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance bias"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecDistanceBias; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance bias absolute value"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecDistanceBiasAbs; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x160
// MPropertyFriendlyName "scale CP (distance/speed/local speed)"
// MDefaultString
int32_t m_nScaleCP; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedMin; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedMax; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed random exponent"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedRandExp; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "bias in local system"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalCoords; // 0x174
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "randomly distribute to highest supplied control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MParticleMaxVersion
2023-03-15 19:24:28 +00:00
bool m_bUseHighestEndCP; // 0x176
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "randomly distribution growth time"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndCPGrowthTime; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed in local coordinate system min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_LocalCoordinateSystemSpeedMin; // 0x17c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed in local coordinate system max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_LocalCoordinateSystemSpeedMax; // 0x188
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Output vector"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x194
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_CreateWithinBox : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use local space"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale CP (.x= distance)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP; // 0x160
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 1344
2023-03-15 18:34:46 +00:00
class C_INIT_CreateOnGrid : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "X Dimension Count"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nXCount; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Y Dimension Count"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nYCount; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Z Dimension Count"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nZCount; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "X Dimension Spacing"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nXSpacing; // 0x338
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Y Dimension Spacing"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nYSpacing; // 0x3e0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Z Dimension Spacing"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nZSpacing; // 0x488
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x530
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use local space"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x534
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "center around control point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCenter; // 0x535
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hollow"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bHollow; // 0x536
2023-03-15 17:25:55 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_PositionOffset : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 17:25:55 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_OffsetMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_OffsetMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset in local space 0/1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalCoords; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset proportional to radius 0/1"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x15d
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 3
// Size: 336
class C_INIT_PositionOffsetToCP : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "creation control point number"
// MDefaultString
int32_t m_nControlPointNumberStart; // 0x140
// MPropertyFriendlyName "offset control point number"
// MDefaultString
int32_t m_nControlPointNumberEnd; // 0x144
// MPropertyFriendlyName "offset in local space 0/1"
// MDefaultString
bool m_bLocalCoords; // 0x148
};
// Aligment: 10
// Size: 480
2023-03-15 18:34:46 +00:00
class C_INIT_PositionPlaceOnGround : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffset; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "kill on no collision"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bKill; // 0x1cc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "include water"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIncludeWater; // 0x1cd
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetNormal; // 0x1ce
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set Previous XYZ only"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetPXYZOnly; // 0x1cf
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Trace along particle normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bTraceAlongNormal; // 0x1d0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset final position by this fraction of the particle radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffsetByRadiusFactor; // 0x1d4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP Entity to Ignore for Collisions"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIgnoreCP; // 0x1d8
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_INIT_VelocityFromNormal : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random speed min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random speed max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ignore delta time"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDt; // 0x148
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 2304
2023-03-15 18:34:46 +00:00
class C_INIT_VelocityRandom : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random speed min"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_fSpeedMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random speed max"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_fSpeedMax; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed in local coordinate system min"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_LocalCoordinateSystemSpeedMin; // 0x298
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed in local coordinate system max"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_LocalCoordinateSystemSpeedMax; // 0x5c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Ignore delta time (RenderTrails)"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDT; // 0x8f8
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 3312
2023-03-15 18:34:46 +00:00
class C_INIT_InitialVelocityNoise : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "absolute value"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecAbsVal; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "invert abs value"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecAbsValInv; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spatial coordinate offset"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:34:46 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_vecOffsetLoc; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "time coordinate offset"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flOffset; // 0x488
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_vecOutputMin; // 0x530
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_vecOutputMax; // 0x860
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "time noise coordinate scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flNoiseScale; // 0xb90
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spatial noise coordinate scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flNoiseScaleLoc; // 0xc38
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0xce0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "apply velocity in local space (0/1)"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0xce4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ignore delta time"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDt; // 0xce5
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 464
2023-03-15 18:34:46 +00:00
class C_INIT_InitialVelocityFromHitbox : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "velocity minimum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flVelocityMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "velocity maximum"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flVelocityMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x1cc
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:34:46 +00:00
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_VelocityRadialRandom : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random speed min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random speed max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpeedMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space scale"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecLocalCoordinateSystemSpeedScale; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ignore delta time"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDelta; // 0x159
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
class C_INIT_RandomLifeTime : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 18:34:46 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "lifetime min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeRange "0 20"
float m_fLifetimeMin; // 0x140
// MPropertyFriendlyName "lifetime max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeRange "0 20"
float m_fLifetimeMax; // 0x144
// MPropertyFriendlyName "lifetime random exponent"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fLifetimeRandExponent; // 0x148
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 4
// Size: 336
class C_INIT_RandomScalar : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMin; // 0x140
// MPropertyFriendlyName "max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMax; // 0x144
// MPropertyFriendlyName "exponent"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flExponent; // 0x148
// MPropertyFriendlyName "output field"
2023-03-15 18:56:19 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldOutput; // 0x14c
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 3
// Size: 352
class C_INIT_RandomVector : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "min"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MVectorIsSometimesCoordinate
Vector m_vecMin; // 0x140
// MPropertyFriendlyName "max"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MVectorIsSometimesCoordinate
Vector m_vecMax; // 0x14c
// MPropertyFriendlyName "output field"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldOutput; // 0x158
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 4
// Size: 336
class C_INIT_RandomVectorComponent : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "min"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMin; // 0x140
// MPropertyFriendlyName "max"
// MDefaultString
float m_flMax; // 0x144
// MPropertyFriendlyName "output field"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
// MPropertyFriendlyName "component 0/1/2 X/Y/Z"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
// MVectorIsSometimesCoordinate
int32_t m_nComponent; // 0x14c
2023-03-15 15:20:35 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 368
class C_INIT_AddVectorToVector : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "component scale factor"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecScale; // 0x140
// MPropertyFriendlyName "output field"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldOutput; // 0x14c
// MPropertyFriendlyName "input field"
2023-03-15 18:56:19 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldInput; // 0x150
// MPropertyFriendlyName "random offset min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vOffsetMin; // 0x154
// MPropertyFriendlyName "random offset max"
2023-03-15 18:56:19 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vOffsetMax; // 0x160
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 3
// Size: 336
class C_INIT_RandomAlphaWindowThreshold : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "min"
// MDefaultString
float m_flMin; // 0x140
// MPropertyFriendlyName "max"
// MDefaultString
float m_flMax; // 0x144
// MPropertyFriendlyName "exponent"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flExponent; // 0x148
2023-03-15 15:20:35 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 3
// Size: 336
class C_INIT_RandomRadius : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 15:20:35 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "radius min"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeRange "biased 0 500"
float m_flRadiusMin; // 0x140
// MPropertyFriendlyName "radius max"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeRange "biased 0 500"
float m_flRadiusMax; // 0x144
// MPropertyFriendlyName "radius random exponent"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
// MPropertyAttributeRange "-2 2"
float m_flRadiusRandExponent; // 0x148
};
// Aligment: 4
// Size: 352
class C_INIT_RandomAlpha : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "alpha field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_alpha"
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
// MPropertyFriendlyName "alpha min"
// MDefaultString
// MPropertyAttributeRange "0 255"
int32_t m_nAlphaMin; // 0x144
// MPropertyFriendlyName "alpha max"
// MDefaultString
// MPropertyAttributeRange "0 255"
int32_t m_nAlphaMax; // 0x148
// MPropertyFriendlyName "alpha random exponent"
// MDefaultString
float m_flAlphaRandExponent; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 368
class CGeneralRandomRotation : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "yaw offset min"
// MDefaultString
float m_flDegreesMin; // 0x140
// MPropertyFriendlyName "yaw offset max"
// MDefaultString
float m_flDegreesMax; // 0x144
// MPropertyFriendlyName "yaw initial"
// MDefaultString
float m_flDegrees; // 0x148
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
ParticleAttributeIndex_t m_nFieldOutput; // 0x14c
// MPropertyFriendlyName "yaw random exponent"
// MDefaultString
float m_flRotationRandExponent; // 0x15c
// MPropertyFriendlyName "randomly flip direction"
// MDefaultString
bool m_bRandomlyFlipDirection; // 0x160
};
// Aligment: 0
// Size: 368
class C_INIT_RandomRotation : public CGeneralRandomRotation, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 3
// Size: 336
class C_INIT_Orient2DRelToCP : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
int32_t m_nCP; // 0x140
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
// MPropertyFriendlyName "rotation offset"
// MDefaultString
float m_flRotOffset; // 0x148
};
// Aligment: 0
// Size: 368
class C_INIT_RandomRotationSpeed : public CGeneralRandomRotation, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 368
class C_INIT_RandomYaw : public CGeneralRandomRotation, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 10
// Size: 384
class C_INIT_RandomColor : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "color1"
// MDefaultString
Color m_ColorMin; // 0x158
// MPropertyFriendlyName "color2"
// MDefaultString
Color m_ColorMax; // 0x15c
// MPropertyFriendlyName "tint clamp min"
// MDefaultString
Color m_TintMin; // 0x160
// MPropertyFriendlyName "tint clamp max"
// MDefaultString
Color m_TintMax; // 0x164
// MPropertyFriendlyName "tint perc"
// MDefaultString
float m_flTintPerc; // 0x168
// MPropertyFriendlyName "tint update movement threshold"
// MDefaultString
float m_flUpdateThreshold; // 0x16c
// MPropertyFriendlyName "tint control point"
// MDefaultString
int32_t m_nTintCP; // 0x170
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldOutput; // 0x174
// MPropertyFriendlyName "tint blend mode"
// MDefaultString
ParticleColorBlendMode_t m_nTintBlendMode; // 0x178
// MPropertyFriendlyName "light amplification amount"
// MDefaultString
float m_flLightAmplification; // 0x17c
};
// Aligment: 7
// Size: 384
class C_INIT_ColorLitPerParticle : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "color1"
// MDefaultString
Color m_ColorMin; // 0x158
// MPropertyFriendlyName "color2"
// MDefaultString
Color m_ColorMax; // 0x15c
// MPropertyFriendlyName "tint clamp min"
// MDefaultString
Color m_TintMin; // 0x160
// MPropertyFriendlyName "tint clamp max"
// MDefaultString
Color m_TintMax; // 0x164
// MPropertyFriendlyName "light bias"
// MDefaultString
float m_flTintPerc; // 0x168
// MPropertyFriendlyName "tint blend mode"
// MDefaultString
ParticleColorBlendMode_t m_nTintBlendMode; // 0x16c
// MPropertyFriendlyName "light amplification amount"
// MDefaultString
float m_flLightAmplification; // 0x170
};
// Aligment: 3
// Size: 336
class C_INIT_RandomTrailLength : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "length min"
// MDefaultString
float m_flMinLength; // 0x140
// MPropertyFriendlyName "length max"
// MDefaultString
float m_flMaxLength; // 0x144
// MPropertyFriendlyName "length random exponent"
// MDefaultString
float m_flLengthRandExponent; // 0x148
};
// Aligment: 4
// Size: 336
class C_INIT_RandomSequence : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "sequence min"
// MDefaultString
// MPropertyAttributeEditor "SequencePicker( 1 )"
int32_t m_nSequenceMin; // 0x140
// MPropertyFriendlyName "sequence max"
// MDefaultString
// MPropertyAttributeEditor "SequencePicker( 1 )"
int32_t m_nSequenceMax; // 0x144
// MPropertyFriendlyName "shuffle"
// MDefaultString
bool m_bShuffle; // 0x148
// MPropertyFriendlyName "linear"
// MDefaultString
bool m_bLinear; // 0x149
};
// Aligment: 4
// Size: 352
class C_INIT_SequenceFromCP : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "kill unused"
// MDefaultString
bool m_bKillUnused; // 0x140
// MPropertyFriendlyName "offset propotional to radius"
// MDefaultString
bool m_bRadiusScale; // 0x141
// MPropertyFriendlyName "control point"
// MDefaultString
int32_t m_nCP; // 0x144
// MPropertyFriendlyName "per particle spatial offset"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecOffset; // 0x148
};
// Aligment: 2
// Size: 592
class C_INIT_RandomModelSequence : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "activity"
// MDefaultString
char[256] m_ActivityName; // 0x140
// MPropertyFriendlyName "model"
// MDefaultString
CStrongHandle< InfoForResourceTypeCModel > m_hModel; // 0x240
};
// Aligment: 10
// Size: 384
class C_INIT_PositionWarp : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "warp min"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecWarpMin; // 0x140
// MPropertyFriendlyName "warp max"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecWarpMax; // 0x14c
// MPropertyFriendlyName "warp scale control point number"
// MDefaultString
int32_t m_nScaleControlPointNumber; // 0x158
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x15c
// MPropertyFriendlyName "radius scale component"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
int32_t m_nRadiusComponent; // 0x160
// MPropertyFriendlyName "warp transition time (treats min/max as start/end sizes)"
// MDefaultString
float m_flWarpTime; // 0x164
// MPropertyFriendlyName "warp transition start time"
// MDefaultString
float m_flWarpStartTime; // 0x168
// MPropertyFriendlyName "previous position sacale"
// MDefaultString
float m_flPrevPosScale; // 0x16c
// MPropertyFriendlyName "reverse warp (0/1)"
// MDefaultString
bool m_bInvertWarp; // 0x170
// MPropertyFriendlyName "use particle count instead of time"
// MDefaultString
bool m_bUseCount; // 0x171
};
// Aligment: 6
// Size: 528
class C_INIT_PositionWarpScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "warp min"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecWarpMin; // 0x140
// MPropertyFriendlyName "warp max"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecWarpMax; // 0x14c
// MPropertyFriendlyName "warp amount"
CPerParticleFloatInput m_InputValue; // 0x158
// MPropertyFriendlyName "previous position scale"
// MDefaultString
float m_flPrevPosScale; // 0x200
// MPropertyFriendlyName "warp scale control point number"
// MDefaultString
int32_t m_nScaleControlPointNumber; // 0x204
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x208
};
// Aligment: 10
// Size: 368
class C_INIT_CreationNoise : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
// MPropertyFriendlyName "absolute value"
// MDefaultString
bool m_bAbsVal; // 0x144
// MPropertyFriendlyName "invert absolute value"
// MDefaultString
bool m_bAbsValInv; // 0x145
// MPropertyFriendlyName "time coordinate offset"
// MDefaultString
float m_flOffset; // 0x148
// MPropertyFriendlyName "output minimum"
// MDefaultString
float m_flOutputMin; // 0x14c
// MPropertyFriendlyName "output maximum"
// MDefaultString
float m_flOutputMax; // 0x150
// MPropertyFriendlyName "time noise coordinate scale"
// MDefaultString
float m_flNoiseScale; // 0x154
// MPropertyFriendlyName "spatial noise coordinate scale"
// MDefaultString
float m_flNoiseScaleLoc; // 0x158
// MPropertyFriendlyName "spatial coordinate offset"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecOffsetLoc; // 0x15c
// MPropertyFriendlyName "world time noise coordinate scale"
// MDefaultString
float m_flWorldTimeScale; // 0x168
};
// Aligment: 5
// Size: 432
class C_INIT_CreateAlongPath : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "maximum distance"
// MDefaultString
float m_fMaxDistance; // 0x140
CPathParameters m_PathParams; // 0x150
// MPropertyFriendlyName "randomly select sequential CP pairs between start and end points"
// MDefaultString
bool m_bUseRandomCPs; // 0x190
// MPropertyFriendlyName "Offset from control point for path end"
// MDefaultString
// MVectorIsCoordinate
Vector m_vEndOffset; // 0x194
// MPropertyFriendlyName "save offset"
// MDefaultString
bool m_bSaveOffset; // 0x1a0
};
// Aligment: 7
// Size: 352
class C_INIT_MoveBetweenPoints : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum speed"
// MDefaultString
float m_flSpeedMin; // 0x140
// MPropertyFriendlyName "maximum speed"
// MDefaultString
float m_flSpeedMax; // 0x144
// MPropertyFriendlyName "end spread"
// MDefaultString
float m_flEndSpread; // 0x148
// MPropertyFriendlyName "start offset"
// MDefaultString
float m_flStartOffset; // 0x14c
// MPropertyFriendlyName "end offset"
// MDefaultString
float m_flEndOffset; // 0x150
// MPropertyFriendlyName "end control point"
// MDefaultString
int32_t m_nEndControlPointNumber; // 0x154
// MPropertyFriendlyName "bias lifetime by trail length"
// MDefaultString
bool m_bTrailBias; // 0x158
};
// Aligment: 11
// Size: 368
class C_INIT_RemapScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldInput; // 0x140
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
// MPropertyFriendlyName "input minimum"
// MDefaultString
float m_flInputMin; // 0x148
// MPropertyFriendlyName "input maximum"
// MDefaultString
float m_flInputMax; // 0x14c
// MPropertyFriendlyName "output minimum"
// MDefaultString
float m_flOutputMin; // 0x150
// MPropertyFriendlyName "output maximum"
// MDefaultString
float m_flOutputMax; // 0x154
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
float m_flStartTime; // 0x158
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
float m_flEndTime; // 0x15c
// MPropertyFriendlyName "set value method"
// MDefaultString
ParticleSetMethod_t m_nSetMethod; // 0x160
// MPropertyFriendlyName "only active within specified input range"
// MDefaultString
bool m_bActiveRange; // 0x164
// MPropertyFriendlyName "remap bias"
// MDefaultString
float m_flRemapBias; // 0x168
};
// Aligment: 12
// Size: 368
class C_INIT_RemapParticleCountToScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
// MPropertyFriendlyName "input minimum"
// MDefaultString
int32_t m_nInputMin; // 0x144
// MPropertyFriendlyName "input maximum"
// MDefaultString
int32_t m_nInputMax; // 0x148
// MPropertyFriendlyName "input scale control point"
// MDefaultString
int32_t m_nScaleControlPoint; // 0x14c
// MPropertyFriendlyName "input scale control point field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
int32_t m_nScaleControlPointField; // 0x150
// MPropertyFriendlyName "output minimum"
// MDefaultString
float m_flOutputMin; // 0x154
// MPropertyFriendlyName "output maximum"
// MDefaultString
float m_flOutputMax; // 0x158
// MPropertyFriendlyName "set value method"
// MDefaultString
ParticleSetMethod_t m_nSetMethod; // 0x15c
// MPropertyFriendlyName "only active within specified input range"
// MDefaultString
bool m_bActiveRange; // 0x160
// MPropertyFriendlyName "invert input from total particle count"
// MDefaultString
bool m_bInvert; // 0x161
// MPropertyFriendlyName "wrap input"
// MDefaultString
bool m_bWrap; // 0x162
// MPropertyFriendlyName "remap bias"
// MDefaultString
float m_flRemapBias; // 0x164
};
// Aligment: 4
// Size: 400
class C_INIT_RemapParticleCountToNamedModelElementScalar : public C_INIT_RemapParticleCountToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "model"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmdl )"
CStrongHandle< InfoForResourceTypeCModel > m_hModel; // 0x170
// MPropertyFriendlyName "output min name"
CUtlString m_outputMinName; // 0x178
// MPropertyFriendlyName "output max name"
CUtlString m_outputMaxName; // 0x180
// MPropertyFriendlyName "model from renderer"
// MDefaultString
bool m_bModelFromRenderer; // 0x188
};
// Aligment: 0
// Size: 400
class C_INIT_RemapParticleCountToNamedModelSequenceScalar : public C_INIT_RemapParticleCountToNamedModelElementScalar, C_INIT_RemapParticleCountToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 400
class C_INIT_RemapParticleCountToNamedModelBodyPartScalar : public C_INIT_RemapParticleCountToNamedModelElementScalar, C_INIT_RemapParticleCountToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 400
class C_INIT_RemapParticleCountToNamedModelMeshGroupScalar : public C_INIT_RemapParticleCountToNamedModelElementScalar, C_INIT_RemapParticleCountToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 2
// Size: 336
class C_INIT_InheritVelocity : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x140
// MPropertyFriendlyName "velocity scale"
// MDefaultString
float m_flVelocityScale; // 0x144
};
// Aligment: 5
// Size: 352
class C_INIT_VelocityFromCP : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPoint; // 0x140
// MPropertyFriendlyName "comparison control point number"
// MDefaultString
int32_t m_nControlPointCompare; // 0x144
// MPropertyFriendlyName "local space control point number"
// MDefaultString
int32_t m_nControlPointLocal; // 0x148
// MPropertyFriendlyName "velocity scale"
// MDefaultString
float m_flVelocityScale; // 0x14c
// MPropertyFriendlyName "direction only"
// MDefaultString
bool m_bDirectionOnly; // 0x150
};
// Aligment: 8
// Size: 368
class C_INIT_AgeNoise : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "absolute value"
// MDefaultString
bool m_bAbsVal; // 0x140
// MPropertyFriendlyName "invert absolute value"
// MDefaultString
bool m_bAbsValInv; // 0x141
// MPropertyFriendlyName "time coordinate offset"
// MDefaultString
float m_flOffset; // 0x144
// MPropertyFriendlyName "start age minimum"
// MDefaultString
float m_flAgeMin; // 0x148
// MPropertyFriendlyName "start age maximum"
// MDefaultString
float m_flAgeMax; // 0x14c
// MPropertyFriendlyName "time noise coordinate scale"
// MDefaultString
float m_flNoiseScale; // 0x150
// MPropertyFriendlyName "spatial noise coordinate scale"
// MDefaultString
float m_flNoiseScaleLoc; // 0x154
// MPropertyFriendlyName "spatial coordinate offset"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecOffsetLoc; // 0x158
};
// Aligment: 1
// Size: 336
class C_INIT_SequenceLifeTime : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "frames per second"
// MDefaultString
float m_flFramerate; // 0x140
};
// Aligment: 12
// Size: 400
class C_INIT_RemapScalarToVector : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldInput; // 0x140
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
// MPropertyFriendlyName "input minimum"
// MDefaultString
float m_flInputMin; // 0x148
// MPropertyFriendlyName "input maximum"
// MDefaultString
float m_flInputMax; // 0x14c
// MPropertyFriendlyName "output minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
Vector m_vecOutputMin; // 0x150
// MPropertyFriendlyName "output maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
Vector m_vecOutputMax; // 0x15c
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
float m_flStartTime; // 0x168
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
float m_flEndTime; // 0x16c
// MPropertyFriendlyName "set value method"
// MDefaultString
ParticleSetMethod_t m_nSetMethod; // 0x170
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x174
// MPropertyFriendlyName "use local system"
// MDefaultString
bool m_bLocalCoords; // 0x178
// MPropertyFriendlyName "remap bias"
// MDefaultString
float m_flRemapBias; // 0x17c
};
// Aligment: 4
// Size: 352
class C_INIT_OffsetVectorToVector : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldInput; // 0x140
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
// MPropertyFriendlyName "output offset minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
Vector m_vecOutputMin; // 0x148
// MPropertyFriendlyName "output offset maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
Vector m_vecOutputMax; // 0x154
};
// Aligment: 6
// Size: 416
2023-03-15 18:56:19 +00:00
class C_INIT_CreateSequentialPathV2 : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 18:34:46 +00:00
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "maximum distance"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMaxDistance; // 0x140
// MPropertyFriendlyName "particles to map from start to end"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNumToAssign; // 0x144
// MPropertyFriendlyName "restart behavior (0 = bounce, 1 = loop )"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLoop; // 0x148
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "use sequential CP pairs between start and end point"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCPPairs; // 0x149
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "save offset"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSaveOffset; // 0x14a
CPathParameters m_PathParams; // 0x150
};
// Aligment: 6
// Size: 400
class C_INIT_CreateSequentialPath : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "maximum distance"
// MDefaultString
float m_fMaxDistance; // 0x140
// MPropertyFriendlyName "particles to map from start to end"
// MDefaultString
float m_flNumToAssign; // 0x144
// MPropertyFriendlyName "restart behavior (0 = bounce, 1 = loop )"
// MDefaultString
bool m_bLoop; // 0x148
// MPropertyFriendlyName "use sequential CP pairs between start and end point"
// MDefaultString
bool m_bCPPairs; // 0x149
// MPropertyFriendlyName "save offset"
// MDefaultString
bool m_bSaveOffset; // 0x14a
CPathParameters m_PathParams; // 0x150
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 12
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:56:19 +00:00
class C_INIT_InitialRepulsionVelocity : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 18:34:46 +00:00
{
public:
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "collision group"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x140
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "minimum velocity"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMin; // 0x1c0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "maximum velocity"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMax; // 0x1cc
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "control point number"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x1d8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "per particle world collision tests"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPerParticle; // 0x1dc
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "offset instead of accelerate"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bTranslate; // 0x1dd
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "offset proportional to radius 0/1"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x1de
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "trace length"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceLength; // 0x1e0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "use radius for per particle trace length"
2023-03-15 17:25:55 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPerParticleTR; // 0x1e4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "inherit from parent"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bInherit; // 0x1e5
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control points to broadcast to children (n + 1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildCP; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "child group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x1ec
};
// Aligment: 1
// Size: 336
class C_INIT_RandomYawFlip : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "flip percentage"
// MDefaultString
float m_flPercent; // 0x140
};
// Aligment: 2
// Size: 336
class C_INIT_RandomSecondSequence : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "sequence min"
// MDefaultString
// MPropertyAttributeEditor "SequencePicker( 2 )"
int32_t m_nSequenceMin; // 0x140
// MPropertyFriendlyName "sequence max"
// MDefaultString
// MPropertyAttributeEditor "SequencePicker( 2 )"
int32_t m_nSequenceMax; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_RemapCPtoScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field 0-2 X/Y/Z"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "remap bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRemapBias; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 13
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_INIT_RemapCPtoVector : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vInputMax; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vOutputMin; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vOutputMax; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x17c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x180
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffset; // 0x184
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "accelerate position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAccelerate; // 0x185
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLocalSpaceCP; // 0x188
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "remap bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRemapBias; // 0x18c
2023-03-15 18:34:46 +00:00
};
// Aligment: 9
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_ChaoticAttractor : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "pickover A parameter"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAParm; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pickover B parameter"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBParm; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pickover C parameter"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCParm; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pickover D parameter"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDParm; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpeedMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpeedMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "relative control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nBaseCP; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "uniform speed"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUniformSpeed; // 0x160
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_CreateFromParentParticles : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "inherited velocity scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flVelocityScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flIncrement; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random parent particle distribution"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandomDistribution; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random seed"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRandomSeed; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sub frame interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSubFrame; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_InheritFromParentParticles : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherited field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIncrement; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random parent particle distribution"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandomDistribution; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random seed"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRandomSeed; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 512
2023-03-15 18:34:46 +00:00
class C_INIT_CreateFromCPs : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIncrement; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMinCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
// MParticleMinVersion
2023-03-15 19:24:28 +00:00
int32_t m_nMaxCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "dynamic control point count"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nDynamicCPCount; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 14
2023-03-15 19:24:28 +00:00
// Size: 512
2023-03-15 18:34:46 +00:00
class C_INIT_DistanceToCPInit : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ensure line of sight"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLOS; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x159
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Maximum Trace Length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x1dc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS Failure Scalar"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLOSScale; // 0x1e0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x1e4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within specified distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance component scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecDistanceScale; // 0x1ec
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "remap bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRemapBias; // 0x1f8
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_INIT_LifespanFromVelocity : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "bias distance"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecComponentScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceOffset; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace recycle tolerance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceTolerance; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum points to cache"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxPlanes; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "collide with water"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIncludeWater; // 0x1e4
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:56:19 +00:00
class C_INIT_CreateFromPlaneCache : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "local offset min"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffsetMin; // 0x140
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "local offset max"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffsetMax; // 0x14c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "set normal"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseNormal; // 0x159
};
// Aligment: 5
// Size: 464
class C_INIT_ModelCull : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x140
// MPropertyFriendlyName "use only bounding box"
// MDefaultString
bool m_bBoundBox; // 0x144
// MPropertyFriendlyName "cull outside instead of inside"
// MDefaultString
bool m_bCullOutside; // 0x145
// MPropertyFriendlyName "use bones instead of hitboxes"
// MDefaultString
bool m_bUseBones; // 0x146
// MPropertyFriendlyName "hitbox set"
// MDefaultString
char[128] m_HitboxSetName; // 0x147
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 480
2023-03-15 18:34:46 +00:00
class C_INIT_RtEnvCull : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "test direction"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecTestDir; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull normal"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecTestNormal; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use velocity for test direction"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseVelocity; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull on miss"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCullOnMiss; // 0x159
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "velocity test adjust lifespan"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLifeAdjust; // 0x15a
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ray trace environment name"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_RtEnvName; // 0x15b
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_INIT_NormalAlignToCP : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
};
// Aligment: 5
// Size: 352
class C_INIT_NormalOffset : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "offset min"
// MDefaultString
// MVectorIsCoordinate
Vector m_OffsetMin; // 0x140
// MPropertyFriendlyName "offset max"
// MDefaultString
// MVectorIsCoordinate
Vector m_OffsetMax; // 0x14c
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x158
// MPropertyFriendlyName "offset in local space 0/1"
// MDefaultString
bool m_bLocalCoords; // 0x15c
// MPropertyFriendlyName "normalize output 0/1"
// MDefaultString
bool m_bNormalize; // 0x15d
};
// Aligment: 10
// Size: 368
class C_INIT_RemapSpeedToScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
// MPropertyFriendlyName "control point number (ignored if per particle)"
// MDefaultString
int32_t m_nControlPointNumber; // 0x144
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
float m_flStartTime; // 0x148
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
float m_flEndTime; // 0x14c
// MPropertyFriendlyName "input minimum"
// MDefaultString
float m_flInputMin; // 0x150
// MPropertyFriendlyName "input maximum"
// MDefaultString
float m_flInputMax; // 0x154
// MPropertyFriendlyName "output minimum"
// MDefaultString
float m_flOutputMin; // 0x158
// MPropertyFriendlyName "output maximum"
// MDefaultString
float m_flOutputMax; // 0x15c
// MPropertyFriendlyName "set value method"
// MDefaultString
ParticleSetMethod_t m_nSetMethod; // 0x160
// MPropertyFriendlyName "per particle"
// MDefaultString
bool m_bPerParticle; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_InitFromCPSnapshot : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "snapshot control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "field to read"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAttributeToRead; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "field to write"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAttributeToWrite; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLocalSpaceCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandom; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "reverse order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bReverse; // 0x151
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random seed"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRandomSeed; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space angles"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpaceAngles; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 17
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_INIT_InitSkinnedPositionFromCPSnapshot : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "snapshot control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSnapshotControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandom; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random seed"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRandomSeed; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "prepare for rigid lock"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRigid; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetNormal; // 0x151
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normal velocity ignore delta time"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDt; // 0x152
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normal velocity min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinNormalVelocity; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normal velocity max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxNormalVelocity; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flIncrement; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Full Loop Increment Amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFullLoopIncrement; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Snapshot start point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSnapShotStartPoint; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherited bone velocity"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBoneVelocity; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max inherited bone velocity"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBoneVelocityMax; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Set Color"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCopyColor; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Set Alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCopyAlpha; // 0x171
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Set Radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCopyRadius; // 0x172
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 464
2023-03-15 18:34:46 +00:00
class C_INIT_InitFromParentKilled : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "field to init"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAttributeToCopy; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_RemapInitialDirectionToCPToVector : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffsetRot; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset axis"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffsetAxis; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normalize"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalize; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_INIT_RemapInitialCPDirectionToRotation : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffsetRot; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point axis"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
int32_t m_nComponent; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_INIT_RemapQAnglesToRotation : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_RemapCPOrientationToRotations : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset pitch/yaw/roll"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecRotation; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Use Quaternians Internally"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseQuat; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Write normal instead of rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bWriteNormal; // 0x151
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_INIT_SetRigidAttachment : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "attribute to read from"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "attribute to cache to"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_RemapInitialVisibilityScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
};
// Aligment: 1
// Size: 336
class C_INIT_RadiusFromCPObject : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
int32_t m_nControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_INIT_InitialSequenceFromModel : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "current anim time output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutputAnim; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x15c
};
// Aligment: 6
// Size: 336
class C_INIT_GlobalScale : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "scale amount"
// MDefaultString
float m_flScale; // 0x140
// MPropertyFriendlyName "scale control point number"
// MDefaultString
int32_t m_nScaleControlPointNumber; // 0x144
// MPropertyFriendlyName "control point number"
// MDefaultString
int32_t m_nControlPointNumber; // 0x148
// MPropertyFriendlyName "scale radius"
// MDefaultString
bool m_bScaleRadius; // 0x14c
// MPropertyFriendlyName "scale position"
// MDefaultString
bool m_bScalePosition; // 0x14d
// MPropertyFriendlyName "scale velocity"
// MDefaultString
bool m_bScaleVelocity; // 0x14e
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:56:19 +00:00
class C_INIT_MakeShapes : public CParticleFunctionInitializer, CParticleFunction
2023-03-15 18:34:46 +00:00
{
public:
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "min size"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinSize; // 0x140
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "max size"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxSize; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_PointList : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "point list"
2023-03-15 19:24:28 +00:00
CUtlVector< PointDefinition_t > m_pointList; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "space points along path"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPlaceAlongPath; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Treat path as a loop"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClosedLoop; // 0x161
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Numer of points along path"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumPointsAlongPath; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_INIT_RandomNamedModelElement : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "model"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmdl )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCModel > m_hModel; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "names"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_names; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "shuffle"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bShuffle; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "linear"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLinear; // 0x161
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model from renderer"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bModelFromRenderer; // 0x162
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldOutput; // 0x164
};
// Aligment: 0
// Size: 368
class C_INIT_RandomNamedModelSequence : public C_INIT_RandomNamedModelElement, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 368
class C_INIT_RandomNamedModelBodyPart : public C_INIT_RandomNamedModelElement, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 368
class C_INIT_RandomNamedModelMeshGroup : public C_INIT_RandomNamedModelElement, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 7
// Size: 400
class C_INIT_RemapNamedModelElementToScalar : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "model"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmdl )"
CStrongHandle< InfoForResourceTypeCModel > m_hModel; // 0x140
// MPropertyFriendlyName "names"
CUtlVector< CUtlString > m_names; // 0x148
// MPropertyFriendlyName "remap values for names"
CUtlVector< float32 > m_values; // 0x160
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nFieldInput; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x17c
// MPropertyFriendlyName "set value method"
// MDefaultString
ParticleSetMethod_t m_nSetMethod; // 0x180
// MPropertyFriendlyName "model from renderer"
// MDefaultString
bool m_bModelFromRenderer; // 0x184
};
// Aligment: 0
// Size: 400
class C_INIT_RemapNamedModelSequenceToScalar : public C_INIT_RemapNamedModelElementToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 400
class C_INIT_RemapNamedModelBodyPartToScalar : public C_INIT_RemapNamedModelElementToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
// Size: 400
class C_INIT_RemapNamedModelMeshGroupToScalar : public C_INIT_RemapNamedModelElementToScalar, CParticleFunctionInitializer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 18
// Size: 416
class C_INIT_StatusEffect : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "D_DETAIL_2"
// MDefaultString
Detail2Combo_t m_nDetail2Combo; // 0x140
// MPropertyFriendlyName "$DETAIL2ROTATION"
// MDefaultString
float m_flDetail2Rotation; // 0x144
// MPropertyFriendlyName "$DETAIL2SCALE"
// MDefaultString
float m_flDetail2Scale; // 0x148
// MPropertyFriendlyName "$DETAIL2BLENDFACTOR"
// MDefaultString
float m_flDetail2BlendFactor; // 0x14c
// MPropertyFriendlyName "$COLORWARPINTENSITY"
// MDefaultString
float m_flColorWarpIntensity; // 0x150
// MPropertyFriendlyName "$DIFFUSEWARPBLENDTOFULL"
// MDefaultString
float m_flDiffuseWarpBlendToFull; // 0x154
// MPropertyFriendlyName "$ENVMAPINTENSITY"
// MDefaultString
float m_flEnvMapIntensity; // 0x158
// MPropertyFriendlyName "$AMBIENTSCALE"
// MDefaultString
float m_flAmbientScale; // 0x15c
// MPropertyFriendlyName "$SPECULARCOLOR"
// MDefaultString
Color m_specularColor; // 0x160
// MPropertyFriendlyName "$SPECULARSCALE"
// MDefaultString
float m_flSpecularScale; // 0x164
// MPropertyFriendlyName "$SPECULAREXPONENT"
// MDefaultString
float m_flSpecularExponent; // 0x168
// MPropertyFriendlyName "$SPECULAREXPONENTBLENDTOFULL"
// MDefaultString
float m_flSpecularExponentBlendToFull; // 0x16c
// MPropertyFriendlyName "$SPECULARBLENDTOFULL"
// MDefaultString
float m_flSpecularBlendToFull; // 0x170
// MPropertyFriendlyName "$RIMLIGHTCOLOR"
// MDefaultString
Color m_rimLightColor; // 0x174
// MPropertyFriendlyName "$RIMLIGHTSCALE"
// MDefaultString
float m_flRimLightScale; // 0x178
// MPropertyFriendlyName "$REFLECTIONSTINTBYBASEBLENDTONONE"
// MDefaultString
float m_flReflectionsTintByBaseBlendToNone; // 0x17c
// MPropertyFriendlyName "$METALNESSBLENDTOFULL"
// MDefaultString
float m_flMetalnessBlendToFull; // 0x180
// MPropertyFriendlyName "$SELFILLUMBLENDTOFULL"
// MDefaultString
float m_flSelfIllumBlendToFull; // 0x184
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 848
2023-03-15 18:34:46 +00:00
class C_INIT_CreateParticleImpulse : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "radius"
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_InputRadius; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "magnitude"
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_InputMagnitude; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force falloff function"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleFalloffFunction_t m_nFalloffFunction; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "exponential falloff exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_InputFalloffExp; // 0x298
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "impulse type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleImpulseType_t m_nImpulseType; // 0x340
};
// Aligment: 2
// Size: 496
class C_INIT_QuantizeFloat : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "interval to snap to"
CPerParticleFloatInput m_InputValue; // 0x140
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
ParticleAttributeIndex_t m_nOutputField; // 0x1e8
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_INIT_InitFloatCollection : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "value"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_InputValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x1e8
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_INIT_InitFloat : public CParticleFunctionInitializer, CParticleFunction
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "value"
CPerParticleFloatInput m_InputValue; // 0x140
// MPropertyFriendlyName "output field"
2023-03-15 18:34:46 +00:00
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x1e8
// MPropertyFriendlyName "set value method"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x1ec
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 1152
2023-03-15 18:34:46 +00:00
class C_INIT_InitVecCollection : public CParticleFunctionInitializer, CParticleFunction
{
public:
// MPropertyFriendlyName "value"
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_InputValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x470
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 1152
2023-03-15 18:34:46 +00:00
class C_INIT_InitVec : public CParticleFunctionInitializer, CParticleFunction
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "value"
CPerParticleVecInput m_InputValue; // 0x140
// MPropertyFriendlyName "output field"
2023-03-15 18:34:46 +00:00
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x470
// MPropertyFriendlyName "set value method"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x474
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 672
2023-03-15 18:34:46 +00:00
class C_OP_InstantaneousEmitter : public CParticleFunctionEmitter, CParticleFunction
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "num to emit"
2023-03-15 18:34:46 +00:00
// MDefaultString
// MPropertyAttributeRange "1 1000"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nParticlesToEmit; // 0x140
// MPropertyFriendlyName "emission start time"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flStartTime; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emission scale from killed parent particles"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInitFromKilledParentParticles; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum emission per frame"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxEmittedPerFrame; // 0x294
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point with snapshot data"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSnapshotControlPoint; // 0x298
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 848
2023-03-15 18:34:46 +00:00
class C_OP_ContinuousEmitter : public CParticleFunctionEmitter, CParticleFunction
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "emission duration"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flEmissionDuration; // 0x140
// MPropertyFriendlyName "emission start time"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flStartTime; // 0x1e8
// MPropertyFriendlyName "emission rate"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flEmitRate; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale emission to used control points"
// MDefaultString
// MParticleMaxVersion
2023-03-15 19:24:28 +00:00
float m_flEmissionScale; // 0x338
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale emission by parent particle count"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScalePerParentParticle; // 0x33c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "emit particles for killed parent particles"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bInitFromKilledParentParticles; // 0x340
};
// Aligment: 15
// Size: 384
class C_OP_NoiseEmitter : public CParticleFunctionEmitter, CParticleFunction
{
public:
// MPropertyFriendlyName "emission duration"
// MDefaultString
float m_flEmissionDuration; // 0x140
// MPropertyFriendlyName "emission start time"
// MDefaultString
float m_flStartTime; // 0x144
// MPropertyFriendlyName "scale emission to used control points"
// MDefaultString
// MParticleMaxVersion
float m_flEmissionScale; // 0x148
// MPropertyFriendlyName "emission count scale control point"
// MDefaultString
int32_t m_nScaleControlPoint; // 0x14c
// MPropertyFriendlyName "emission count scale control point field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
int32_t m_nScaleControlPointField; // 0x150
// MPropertyFriendlyName "world noise scale control point"
// MDefaultString
int32_t m_nWorldNoisePoint; // 0x154
// MPropertyFriendlyName "absolute value"
// MDefaultString
bool m_bAbsVal; // 0x158
// MPropertyFriendlyName "invert absolute value"
// MDefaultString
bool m_bAbsValInv; // 0x159
// MPropertyFriendlyName "time coordinate offset"
// MDefaultString
float m_flOffset; // 0x15c
// MPropertyFriendlyName "emission minimum"
// MDefaultString
float m_flOutputMin; // 0x160
// MPropertyFriendlyName "emission maximum"
// MDefaultString
float m_flOutputMax; // 0x164
// MPropertyFriendlyName "time noise coordinate scale"
// MDefaultString
float m_flNoiseScale; // 0x168
// MPropertyFriendlyName "world spatial noise coordinate scale"
// MDefaultString
float m_flWorldNoiseScale; // 0x16c
// MPropertyFriendlyName "spatial coordinate offset"
// MDefaultString
// MVectorIsCoordinate
Vector m_vecOffsetLoc; // 0x170
// MPropertyFriendlyName "world time noise coordinate scale"
// MDefaultString
float m_flWorldTimeScale; // 0x17c
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_MaintainEmitter : public CParticleFunctionEmitter, CParticleFunction
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "count to maintain"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nParticlesToMaintain; // 0x140
// MPropertyFriendlyName "emission start time"
2023-03-15 18:56:19 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maintain count scale control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleControlPoint; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maintain count scale control point field"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleControlPointField; // 0x14c
// MPropertyFriendlyName "emission rate"
// MDefaultString
float m_flEmissionRate; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point with snapshot data"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSnapshotControlPoint; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "group emission times for new particles"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEmitInstantaneously; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RandomForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "min force"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_MinForce; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max force"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_MaxForce; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_CPVelocityForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "velocity scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flScale; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_ParentVortices : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "amount of force"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flForceScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "twist axis"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecTwistAxis; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "flip twist axis with yaw"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bFlipBasedOnYaw; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_TwistAroundAxis : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "amount of force"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fForceAmount; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "twist axis"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_TwistAxis; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "object local space axis 0/1"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 704
2023-03-15 18:34:46 +00:00
class C_OP_AttractToControlPoint : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "component scale"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecComponentScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount of force (or Max Force)"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_fForceAmount; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "falloff power"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fFalloffPower; // 0x1f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x1fc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale in local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bScaleLocal; // 0x200
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Min Pullforce"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_fForceAmountMin; // 0x208
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Apply Min Pullforce"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bApplyMinForce; // 0x2b0
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_ForceBasedOnDistanceToPlane : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "min distance from plane"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinDist; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force at min distance"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecForceAtMinDist; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max distance from plane"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxDist; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force at max distance"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecForceAtMaxDist; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "plane normal"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecPlaneNormal; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flExponent; // 0x170
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_TimeVaryingForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "time to start transition"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartLerpTime; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting force"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_StartingForce; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "time to end transition"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndLerpTime; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending force"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_EndingForce; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_TurbulenceForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "noise scale 0"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNoiseCoordScale0; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise scale 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNoiseCoordScale1; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise scale 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNoiseCoordScale2; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise scale 3"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNoiseCoordScale3; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise amount 0"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecNoiseAmount0; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise amount 1"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecNoiseAmount1; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise amount 2"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecNoiseAmount2; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise amount 3"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecNoiseAmount3; // 0x174
2023-03-15 18:34:46 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 4
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_CurlNoiseForce : public CParticleFunctionForce, CParticleFunction
{
public:
2023-03-15 19:24:28 +00:00
// MPropertyFriendlyName "use curl"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_useCurl; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise frequency"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecNoiseFreq; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise amplitude"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecNoiseScale; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset rate"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffsetRate; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 1312
2023-03-15 18:34:46 +00:00
class C_OP_PerParticleForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "force scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flForceScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force to apply"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_vForce; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x518
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_WindForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "force to apply"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vForce; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ExternalWindForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "control point to sample wind"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecScale; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_ExternalGameImpulseForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "force scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flForceScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rope shake"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRopes; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "limit rope impulses to Z"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRopesZOnly; // 0x1e9
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "explosions"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bExplosions; // 0x1ea
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle systems"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bParticles; // 0x1eb
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 1152
2023-03-15 18:34:46 +00:00
class C_OP_LocalAccelerationForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "local space control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space acceleration"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecAccel; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ScreenForceFromPlayerView : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "Acceleration"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAccel; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_ExternalGenericForce : public CParticleFunctionForce, CParticleFunction
{
public:
// MPropertyFriendlyName "strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStrength; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "curl strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCurlStrength; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "linear strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLinearStrength; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radial strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadialStrength; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotationStrength; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_BasicMovement : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "gravity"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_Gravity; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "drag"
// MDefaultString
// MPropertyAttributeRange "-1 1"
2023-03-15 19:24:28 +00:00
float m_fDrag; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max constraint passes"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxConstraintPasses; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_FadeAndKill : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "start fade in time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartFadeInTime; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fade in time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndFadeInTime; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start fade out time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartFadeOutTime; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fade out time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndFadeOutTime; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartAlpha; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndAlpha; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "force preserving particle order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bForcePreserveParticleOrder; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_FadeAndKillForTracers : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "start fade in time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartFadeInTime; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fade in time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndFadeInTime; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start fade out time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartFadeOutTime; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fade out time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndFadeOutTime; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartAlpha; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndAlpha; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_FadeIn : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "fade in time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeInTimeMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade in time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeInTimeMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade in time exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeInTimeExp; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "proportional 0/1"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_FadeOut : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "fade out time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeOutTimeMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade out time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeOutTimeMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade out time exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeOutTimeExp; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeBias; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "proportional 0/1"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x180
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ease in and out"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEaseInAndOut; // 0x181
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_FadeInSimple : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "proportional fade in time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeInTime; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "alpha field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_alpha"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_FadeOutSimple : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "proportional fade out time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeOutTime; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "alpha field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_alpha"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ClampScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_ClampVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 13
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_OscillateScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "oscillation rate min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_RateMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation rate max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_RateMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation frequency min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_FrequencyMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation frequency max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_FrequencyMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "proportional 0/1"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start/end proportional"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportionalOp; // 0x155
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_min; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_max; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_min; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_max; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation multiplier"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscMult; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation start phase"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscAdd; // 0x16c
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_OscillateScalarSimple : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "oscillation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_Rate; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation frequency"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_Frequency; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation multiplier"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscMult; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation start phase"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscAdd; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 14
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_OscillateVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "oscillation rate min"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_RateMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation rate max"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_RateMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation frequency min"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_FrequencyMin; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation frequency max"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_FrequencyMax; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "proportional 0/1"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x174
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start/end proportional"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportionalOp; // 0x175
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset instead of accelerate position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffset; // 0x176
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_min; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_max; // 0x17c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_min; // 0x180
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_max; // 0x184
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation multiplier"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscMult; // 0x188
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation start phase"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscAdd; // 0x18c
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_OscillateVectorSimple : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "oscillation rate"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_Rate; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation frequency"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_Frequency; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation multiplier"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscMult; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "oscillation start phase"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOscAdd; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset instead of accelerate position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffset; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 9
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_DifferencePreviousParticle : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "difference minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "difference maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within specified difference"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "also set ouput to previous particle"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetPreviousParticle; // 0x15d
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_PointVectorAtNextParticle : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapScalarEndCap : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ReinitializeScalarEndCap : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapScalarOnceTimed : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "remap time proportional"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "remap time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRemapTime; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapParticleCountOnScalarEndCap : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "count back from last particle"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bBackwards; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 1008
2023-03-15 18:34:46 +00:00
class C_OP_RemapParticleCountToScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nInputMax; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flOutputMin; // 0x298
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flOutputMax; // 0x340
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x3e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x3ec
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapVisibilityScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusScale; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPVisibilityToScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP visibility minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP visibility maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadius; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPVisibilityToVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP visibility minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP visibility maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMax; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "visibility radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadius; // 0x16c
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 512
2023-03-15 18:34:46 +00:00
class C_OP_LerpScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "value to lerp to"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flOutput; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x1f4
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_LerpEndCapScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "value to lerp to"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lerp time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLerpTime; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_LerpEndCapVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "value to lerp to"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lerp time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLerpTime; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_LerpVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "value to lerp to"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 528
2023-03-15 18:34:46 +00:00
class C_OP_LerpToOtherAttribute : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x1ec
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapSpeed : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ignore delta time"
// MDefaultString
// MParticleAdvancedField
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDelta; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapVectortoCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle number to read"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nParticleNumber; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_RampScalarLinear : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "ramp rate min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_RateMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp rate max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_RateMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_min; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_max; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_min; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_max; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x180
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start/end proportional"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportionalOp; // 0x184
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_RampScalarSpline : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "ramp rate min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_RateMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp rate max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_RateMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_min; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_max; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_min; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_max; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBias; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x180
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start/end proportional"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportionalOp; // 0x184
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ease out"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEaseOut; // 0x185
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_RampScalarLinearSimple : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "ramp rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_Rate; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x170
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_RampScalarSplineSimple : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "ramp rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_Rate; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ease out"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEaseOut; // 0x174
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_Noise : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise coordinate scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
fltx4 m_fl4NoiseScale; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "additive"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAdditive; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Noise animation time scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNoiseAnimationTimeScale; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_VectorNoise : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "noise coordinate scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
fltx4 m_fl4NoiseScale; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "additive"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAdditive; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset instead of accelerate position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffset; // 0x171
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Noise animation time scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNoiseAnimationTimeScale; // 0x174
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_Decay : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Reduce rope popping on decay"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRopeDecay; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_DecayOffscreen : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Offscreen Time Before Decay"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flOffscreenTime; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_EndCapTimedFreeze : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "freeze time"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flFreezeTime; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_EndCapTimedDecay : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "decay time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDecayTime; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class C_OP_EndCapDecay : public CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_VelocityDecay : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum velocity"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinVelocity; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_AlphaDecay : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinAlpha; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RadiusDecay : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinRadius; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_DecayMaintainCount : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "count to maintain"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nParticlesToMaintain; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maintain count scale control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maintain count scale control point field"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleControlPointField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "decay delay"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDecayDelay; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_DecayClampCount : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Maximum Count"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nCount; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_Cull : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "cull percentage"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCullPerc; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCullStart; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCullEnd; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull time exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCullExp; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class CGeneralSpin : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "spin rate degrees"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSpinRateDegrees; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spin rate min"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSpinRateMinDegrees; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spin stop time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fSpinRateStopTime; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class CSpinUpdateBase : public CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_Spin : public CGeneralSpin, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 320
2023-03-15 18:34:46 +00:00
class C_OP_SpinUpdate : public CSpinUpdateBase, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SpinYaw : public CGeneralSpin, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_InterpolateRadius : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius start scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius end scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndScale; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ease in and out"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEaseInAndOut; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBias; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_ColorInterpolate : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "color fade"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_ColorFade; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeStartTime; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeEndTime; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ease in and out"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEaseInOut; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_ColorInterpolateRandom : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "color fade min"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_ColorFadeMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color fade max"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_ColorFadeMax; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade start time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeStartTime; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fade end time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeEndTime; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x174
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ease in and out"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEaseInOut; // 0x178
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_PositionLock : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start fadeout min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_min; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start fadeout max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_max; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start fadeout exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime_exp; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fadeout min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_min; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fadeout max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_max; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fadeout exponent"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime_exp; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance fade range"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRange; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "instant jump threshold"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flJumpThreshold; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "previous position scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPrevPosScale; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lock rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLockRot; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 33
2023-03-15 19:24:28 +00:00
// Size: 1504
2023-03-15 18:34:46 +00:00
class C_OP_ControlpointLight : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "initial color bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint1; // 0x554
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint2; // 0x558
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint3; // 0x55c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint4; // 0x560
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 control point offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCPOffset1; // 0x564
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 control point offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCPOffset2; // 0x570
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 control point offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCPOffset3; // 0x57c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 control point offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCPOffset4; // 0x588
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 50% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightFiftyDist1; // 0x594
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 0% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightZeroDist1; // 0x598
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 50% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightFiftyDist2; // 0x59c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 0% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightZeroDist2; // 0x5a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 50% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightFiftyDist3; // 0x5a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 0% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightZeroDist3; // 0x5a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 50% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightFiftyDist4; // 0x5ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 0% distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_LightZeroDist4; // 0x5b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 color"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_LightColor1; // 0x5b4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 color"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_LightColor2; // 0x5b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 color"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_LightColor3; // 0x5bc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 color"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_LightColor4; // 0x5c0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 type 0=point 1=spot"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightType1; // 0x5c4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 type 0=point 1=spot"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightType2; // 0x5c5
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 type 0=point 1=spot"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightType3; // 0x5c6
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 type 0=point 1=spot"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightType4; // 0x5c7
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 1 dynamic light"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightDynamic1; // 0x5c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 2 dynamic light"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightDynamic2; // 0x5c9
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 3 dynamic light"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightDynamic3; // 0x5ca
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light 4 dynamic light"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLightDynamic4; // 0x5cb
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "compute normals from control points"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseNormal; // 0x5cc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "half-lambert normals"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseHLambert; // 0x5cd
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "clamp minimum light value to initial color"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClampLowerRange; // 0x5d2
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "clamp maximum light value to initial color"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClampUpperRange; // 0x5d3
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_GlobalLight : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "initial color bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "clamp minimum light value to initial color"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClampLowerRange; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "clamp maximum light value to initial color"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClampUpperRange; // 0x145
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 512
2023-03-15 18:34:46 +00:00
class C_OP_SetChildControlPoints : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of control points to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumControlPoints; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first particle to copy"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nFirstSourcePoint; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOrientation; // 0x1f8
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointsToParticle : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of control points to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumControlPoints; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first particle to copy"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstSourcePoint; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOrientation; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 592
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointsToModelParticles : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "hitbox set"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "attachment to follow"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_AttachmentName; // 0x1c0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "First control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstControlPoint; // 0x240
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of control points to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumControlPoints; // 0x244
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first particle to copy"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstSourcePoint; // 0x248
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use skinning instead of hitboxes"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSkin; // 0x24c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "follow attachment"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAttachment; // 0x24d
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 688
2023-03-15 18:34:46 +00:00
class C_OP_SetPerChildControlPoint : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of children to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumControlPoints; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nParticleIncrement; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first particle to copy"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nFirstSourcePoint; // 0x1f8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "set orientation"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOrientation; // 0x2a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set number of children based on particle count"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNumBasedOnParticleCount; // 0x2a1
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetPerChildControlPointFromAttribute : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of children to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumControlPoints; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nParticleIncrement; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first particle to copy"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstSourcePoint; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set number of children based on particle count"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNumBasedOnParticleCount; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "field to read"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAttributeToRead; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point field for scalars"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nCPField; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPOrientationToYaw : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotOffset; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spin strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpinStrength; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_DampenToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "falloff range"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRange; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "dampen scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecOffset; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset in local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffsetLocal; // 0x150
2023-03-15 18:34:46 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 10
// Size: 864
2023-03-15 18:34:46 +00:00
class C_OP_PinParticleToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecOffset; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset in local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffsetLocal; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle to use"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSelection_t m_nParticleSelection; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle number"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nParticleNumber; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pin break type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticlePinDistance_t m_nPinBreakType; // 0x200
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "break length %"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flBreakDistance; // 0x208
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "break speed"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flBreakSpeed; // 0x2b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "break comparison control point 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nBreakControlPointNumber; // 0x358
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "break comparison control point 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nBreakControlPointNumber2; // 0x35c
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_MovementRigidAttachToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale control point field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCPField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cache attribute to read from"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "attribute to write to"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffsetLocal; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 672
2023-03-15 18:34:46 +00:00
class C_OP_LerpToInitialPosition : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "position cache attribute"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nCacheField; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flScale; // 0x1f8
2023-03-15 18:34:46 +00:00
};
// Aligment: 12
2023-03-15 19:24:28 +00:00
// Size: 1152
2023-03-15 18:34:46 +00:00
class C_OP_DistanceBetweenCPs : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInputMax; // 0x1f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flOutputMin; // 0x2a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flOutputMax; // 0x348
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x3f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS Failure Scalar"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLOSScale; // 0x3f4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x3f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ensure line of sight"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLOS; // 0x478
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x47c
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_PercentageBetweenCPs : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within input range"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "treat distance between points as radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRadialCheck; // 0x161
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_PercentageBetweenCPsVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within input range"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "treat distance between points as radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRadialCheck; // 0x171
2023-03-15 18:34:46 +00:00
};
// Aligment: 12
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_PercentageBetweenCPLerpCPs : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output starting control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputStartCP; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output starting control point field 0-2 X/Y/Z"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputStartField; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output ending control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputEndCP; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output ending control point field 0-2 X/Y/Z"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputEndField; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within input range"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "treat distance between points as radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRadialCheck; // 0x169
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 13
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_DistanceToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ensure line of sight"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLOS; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x159
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x1dc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS Failure Scalar"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLOSScale; // 0x1e0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x1e4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within specified distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output is additive"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAdditive; // 0x1e9
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 1024
2023-03-15 18:34:46 +00:00
class C_OP_CylindricalDistanceToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cylinder inner radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cylinder outer radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInputMax; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cylinder inner output"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flOutputMin; // 0x298
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cylinder outer output"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flOutputMax; // 0x340
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cylinder top control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x3e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cylinder bottom control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x3ec
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x3f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within specified distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x3f4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output is additive"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAdditive; // 0x3f5
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "apply radius to ends (capsule)"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCapsule; // 0x3f6
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_MovementLoopInsideSphere : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDistance; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "component scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecScale; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 656
2023-03-15 18:34:46 +00:00
class C_OP_MoveToHitbox : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime lerp start"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLifeTimeLerpStart; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime lerp end"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLifeTimeLerpEnd; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "previous position scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPrevPosScale; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x1d4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lerp type"
// MDefaultString
2023-03-15 19:24:28 +00:00
HitboxLerpType_t m_nLerpType; // 0x1d8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Constant Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x1e0
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 480
2023-03-15 18:34:46 +00:00
class C_OP_LockToBone : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control_point_number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime fade start"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLifeTimeFadeStart; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime fade end"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLifeTimeFadeEnd; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "instant jump threshold"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flJumpThreshold; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "previous position scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPrevPosScale; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rigid lock"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRigid; // 0x1d4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x1d5
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SnapshotRigidSkinToBones : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "rotate normals"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bTransformNormals; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SnapshotSkinToBones : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "rotate normals"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bTransformNormals; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime fade start"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLifeTimeFadeStart; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lifetime fade end"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLifeTimeFadeEnd; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "instant jump threshold"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flJumpThreshold; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "previous position scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPrevPosScale; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_CPOffsetToPercentageBetweenCPs : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "percentage minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "percentage bias"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputBias; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOffsetCP; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOuputCP; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "treat distance between points as radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRadialCheck; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "treat offset as scale of total distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bScaleOffset; // 0x161
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset amount"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffset; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_PlaneCull : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point for point on plane"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nPlaneControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "plane normal"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecPlaneDirection; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull plane offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPlaneOffset; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_DistanceCull : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point offset"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecPointOffset; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDistance; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull inside instead of outside"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCullInside; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 464
2023-03-15 18:34:46 +00:00
class C_OP_ModelCull : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use only bounding box"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bBoundBox; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cull outside instead of inside"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCullOutside; // 0x145
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use bones instead of hitboxes"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseBones; // 0x146
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hitbox set"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_HitboxSetName; // 0x147
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SequenceFromModel : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "current anim time output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutputAnim; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_VelocityMatchingForce : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "direction matching strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDirScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "speed matching strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpdScale; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to broadcast speed and direction to"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPBroadcast; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_MovementMaintainOffset : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "desired offset"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffset; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale by radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRadiusScale; // 0x150
2023-03-15 18:34:46 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 14
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_MovementPlaceOnGround : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffset; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP movement tolerance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTolerance; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceOffset; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLerpRate; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "reference CP 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRefCP1; // 0x1d4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "reference CP 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRefCP2; // 0x1d8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interploation distance tolerance cp"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLerpCP; // 0x1dc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "kill on no collision"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bKill; // 0x1e4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "include water"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIncludeWater; // 0x1e5
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetNormal; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "treat offset as scalar of particle radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bScaleOffset; // 0x1e9
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP Entity to Ignore for Collisions"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIgnoreCP; // 0x1ec
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_InheritFromParentParticles : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherited field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIncrement; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random parent particle distribution"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandomDistribution; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_InheritFromParentParticlesV2 : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherited field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIncrement; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random parent particle distribution"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandomDistribution; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "behavior if parent particle dies"
// MDefaultString
2023-03-15 19:24:28 +00:00
MissingParentInheritBehavior_t m_nMissingParentBehavior; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 672
2023-03-15 18:34:46 +00:00
class C_OP_ReadFromNeighboringParticle : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "read field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "written field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIncrement; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_DistanceCheck; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x1f8
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_InheritFromPeerSystem : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "read field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "written field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle neighbor increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nIncrement; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "group id"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nGroupID; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapVectorComponentToScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Input Vector"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Output Scalar"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Vector Component"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nComponent; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_OrientTo2dDirection : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "rotation offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotOffset; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spin strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpinStrength; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RestartAfterDuration : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "minimum restart time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDurationMin; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum restart time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDurationMax; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to scale duration"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point field X/Y/Z"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nCPField; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "child group ID"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only restart children"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOnlyChildren; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_Orient2DRelToCP : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "rotation offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotOffset; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spin strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpinStrength; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 512
2023-03-15 18:34:46 +00:00
class C_OP_MovementRotateParticleAroundAxis : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "rotation axis"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecRotAxis; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRotRate; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x1f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use local space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLocalSpace; // 0x1fc
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 528
2023-03-15 18:34:46 +00:00
class C_OP_RotateVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation axis min"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecRotAxisMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation axis max"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecRotAxisMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation rate min"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotRateMin; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation rate max"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotRateMax; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normalize output"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalize; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "per particle scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flScale; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_MaxVelocity : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "maximum velocity"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxVelocity; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "override max velocity from this CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOverrideCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "override CP field"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOverrideCPField; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_LagCompensation : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "desired velocity CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nDesiredVelocityCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "latency CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLatencyCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "latency CP field"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLatencyCPField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "desired velocity CP field override(for speed only)"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nDesiredVelocityCPField; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_MaintainSequentialPath : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "maximum distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_fMaxDistance; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particles to map from start to end"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flNumToAssign; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cohesion strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCohesionStrength; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point movement tolerance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTolerance; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "restart behavior (0 = bounce, 1 = loop )"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLoop; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use existing particle count"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseParticleCount; // 0x151
CPathParameters m_PathParams; // 0x160
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_LockToSavedSequentialPathV2 : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "start fade time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeStart; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fade time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeEnd; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Use sequential CP pairs between start and end point"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCPPairs; // 0x148
CPathParameters m_PathParams; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_LockToSavedSequentialPath : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "start fade time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeStart; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end fade time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFadeEnd; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Use sequential CP pairs between start and end point"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCPPairs; // 0x14c
CPathParameters m_PathParams; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_RemapDotProductToScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "first input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "second input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP2; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum (-1 to 1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum (-1 to 1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use particle velocity for first input"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseParticleVelocity; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only active within specified input range"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bActiveRange; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use particle normal for first input"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseParticleNormal; // 0x165
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPtoScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field 0-2 X/Y/Z"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInterpRate; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_NormalLock : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 13
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPtoVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLocalSpaceCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vInputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vOutputMin; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vOutputMax; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime start time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartTime; // 0x17c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "emitter lifetime end time (seconds)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndTime; // 0x180
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInterpRate; // 0x184
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x188
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOffset; // 0x18c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "accelerate position"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAccelerate; // 0x18d
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SetCPtoVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPtoVelocity : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapVelocityToVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normalize"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalize; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPVelocityToVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normalize"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalize; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SetCPOrientationToDirection : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_RemapDirectionToCPToVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffsetRot; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset axis"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecOffsetAxis; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normalize"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalize; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "strength field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldStrength; // 0x160
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 1968
2023-03-15 18:34:46 +00:00
class C_OP_RemapCrossProductOfTwoVectorsToVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input vector 1"
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_InputVec1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input vector 2"
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_InputVec2; // 0x470
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x7a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "normalize output"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNormalize; // 0x7a4
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_NormalizeVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapControlPointDirectionToVector : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flScale; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 480
2023-03-15 18:34:46 +00:00
class C_OP_SetCPOrientationToGroundNormal : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "interpolation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInterpRate; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP movement tolerance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTolerance; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceOffset; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP to trace from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP; // 0x1d0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x1d4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "include water"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIncludeWater; // 0x1dc
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPOrientationToRotations : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset pitch/yaw/roll"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecRotation; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Use Quaternians Internally"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseQuat; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Write normal instead of rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bWriteNormal; // 0x151
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_RemapControlPointOrientationToRotation : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_rotation"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset rotation"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffsetRot; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point axis"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
// MVectorIsSometimesCoordinate
2023-03-15 19:24:28 +00:00
int32_t m_nComponent; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_LockToPointList : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "point list"
2023-03-15 19:24:28 +00:00
CUtlVector< PointDefinition_t > m_pointList; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "space points along path"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPlaceAlongPath; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Treat path as a loop"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClosedLoop; // 0x161
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Numer of points along path"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumPointsAlongPath; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 9
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelElementOnceTimed : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "model"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmdl )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCModel > m_hModel; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input names"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_inNames; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output names"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_outNames; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fallback names when the input doesn't match"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_fallbackNames; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model from renderer"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bModelFromRenderer; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "remap time proportional"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProportional; // 0x191
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "remap time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRemapTime; // 0x19c
2023-03-15 18:34:46 +00:00
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelSequenceOnceTimed : public C_OP_RemapNamedModelElementOnceTimed, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelBodyPartOnceTimed : public C_OP_RemapNamedModelElementOnceTimed, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelMeshGroupOnceTimed : public C_OP_RemapNamedModelElementOnceTimed, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelElementEndCap : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "model"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmdl )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCModel > m_hModel; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input names"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_inNames; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output names"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_outNames; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fallback names when the input doesn't match"
2023-03-15 19:24:28 +00:00
CUtlVector< CUtlString > m_fallbackNames; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model from renderer"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bModelFromRenderer; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x198
2023-03-15 18:34:46 +00:00
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelSequenceEndCap : public C_OP_RemapNamedModelElementEndCap, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelBodyPartEndCap : public C_OP_RemapNamedModelElementEndCap, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RemapNamedModelMeshGroupEndCap : public C_OP_RemapNamedModelElementEndCap, CParticleFunctionOperator, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 688
2023-03-15 18:34:46 +00:00
class C_OP_SetFromCPSnapshot : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "snapshot control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "field to read"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAttributeToRead; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "field to write"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAttributeToWrite; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLocalSpaceCP; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandom; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "reverse order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bReverse; // 0x151
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random seed"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRandomSeed; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Snapshot start point"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nSnapShotStartPoint; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x200
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Sub-Sample Between Input Points"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSubSample; // 0x2a8
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 704
2023-03-15 18:34:46 +00:00
class C_OP_SetAttributeToScalarExpression : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "expression"
// MDefaultString
2023-03-15 19:24:28 +00:00
ScalarExpressionType_t m_nExpression; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInput1; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInput2; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x298
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x29c
2023-03-15 18:34:46 +00:00
};
// Aligment: 9
2023-03-15 19:24:28 +00:00
// Size: 1024
2023-03-15 18:34:46 +00:00
class C_OP_MovementSkinnedPositionFromCPSnapshot : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "snapshot control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSnapshotControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandom; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "random seed"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nRandomSeed; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetNormal; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "particle increment amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flIncrement; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Full Loop Increment Amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nFullLoopIncrement; // 0x200
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Snapshot start point"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nSnapShotStartPoint; // 0x2a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x350
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 672
2023-03-15 18:34:46 +00:00
class C_OP_MovementMoveAlongSkinnedCPSnapshot : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "snapshot control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSnapshotControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetNormal; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flInterpolation; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Snapshot Index T Value"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flTValue; // 0x1f8
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 528
2023-03-15 18:34:46 +00:00
class C_OP_QuantizeFloat : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "value"
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_InputValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x1e8
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 704
2023-03-15 18:34:46 +00:00
class C_OP_SetFloatCollection : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "value"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_InputValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x1ec
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_Lerp; // 0x1f0
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 704
2023-03-15 18:34:46 +00:00
class C_OP_SetFloat : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "value"
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_InputValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x1ec
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_Lerp; // 0x1f0
2023-03-15 18:34:46 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 3
// Size: 1312
2023-03-15 18:34:46 +00:00
class C_OP_SetVec : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "value"
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_InputValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nOutputField; // 0x470
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_Lerp; // 0x478
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_LockPoints : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "min column/particle index to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMinCol; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max column/particle index to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxCol; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "min row/particle index to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMinRow; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max row/particle index to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxRow; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to lock to"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPoint; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount of current position to preserve"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBlendValue; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapDistanceToLineSegmentBase : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point 0"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP0; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "min distance value"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinInputValue; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max distance value"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxInputValue; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use distance to an infinite line instead of a finite line segment"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bInfiniteLine; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_RemapDistanceToLineSegmentToScalar : public C_OP_RemapDistanceToLineSegmentBase, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output value at min distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinOutputValue; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output value at max distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxOutputValue; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_RemapDistanceToLineSegmentToVector : public C_OP_RemapDistanceToLineSegmentBase, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output value at min distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vMinOutputValue; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output value at max distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vMaxOutputValue; // 0x170
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_TeleportBeam : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Position Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPPosition; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Velocity Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPVelocity; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Misc Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPMisc; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Color Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPColor; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Invalid Color Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInvalidColor; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Extra Arc Data Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPExtraArcData; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Gravity"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vGravity; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Arc Duration Maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flArcMaxDuration; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Segment Break"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSegmentBreak; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Arc Speed"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flArcSpeed; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Alpha"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAlpha; // 0x170
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_CycleScalar : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "destination scalar field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nDestField; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Value at start of cycle"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartValue; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Value at end of cycle"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndValue; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Cycle time"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flCycleTime; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Do not repeat cycle"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDoNotRepeatCycle; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Synchronize particles"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSynchronizeParticles; // 0x151
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Scale Start/End Control Point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPScale; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "start scale control point field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nCPFieldMin; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "end scale control point field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nCPFieldMax; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set value method"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleSetMethod_t m_nSetMethod; // 0x160
2023-03-15 18:34:46 +00:00
};
// Aligment: 11
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_CalculateVectorAttribute : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "start value"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vStartValue; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field 1"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput1; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input scale 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputScale1; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field 2"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldInput2; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input scale 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputScale2; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point input 1"
2023-03-15 19:24:28 +00:00
ControlPointReference_t m_nControlPointInput1; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point scale 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flControlPointScale1; // 0x170
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point input 2"
2023-03-15 19:24:28 +00:00
ControlPointReference_t m_nControlPointInput2; // 0x174
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point scale 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flControlPointScale2; // 0x188
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFieldOutput; // 0x18c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "final per component scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vFinalOutputScale; // 0x190
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 832
2023-03-15 18:34:46 +00:00
class C_OP_ColorAdjustHSL : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "hue adjust"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flHueAdjust; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "saturation adjust"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flSaturationAdjust; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "lightness adjust"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flLightnessAdjust; // 0x290
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ConnectParentParticleToNearest : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Second Control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSecondControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_UpdateLightSource : public CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "color tint"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_vColorTint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount to multiply light brightness by"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flBrightnessScale; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount to multiply particle system radius by to get light radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusScale; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum radius for created lights"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinimumLightingRadius; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum radius for created lights"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaximumLightingRadius; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount of damping of changes"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPositionDampingConstant; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapSpeedtoCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Output field 0-2 X/Y/Z"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use delta of velocity instead of constant speed"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseDeltaV; // 0x15c
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 1008
2023-03-15 18:34:46 +00:00
class C_OP_RemapDotProductToCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "first input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "second input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP2; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output component"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nOutVectorField; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum (-1 to 1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum (-1 to 1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInputMax; // 0x1f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flOutputMin; // 0x2a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flOutputMax; // 0x348
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 672
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointFieldToScalarExpression : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "expression"
// MDefaultString
2023-03-15 19:24:28 +00:00
ScalarExpressionType_t m_nExpression; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output component"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nOutVectorField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input 1"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInput1; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input 2"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInput2; // 0x1f8
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 1968
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointToVectorExpression : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "expression"
// MDefaultString
2023-03-15 19:24:28 +00:00
VectorExpressionType_t m_nExpression; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input 1"
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vInput1; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input 2"
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vInput2; // 0x478
2023-03-15 18:34:46 +00:00
};
// Aligment: 6
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapModelVolumetoCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutControlPointNumber; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input volume minimum in cubic units"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input volume maximum in cubic units"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapBoundingVolumetoCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input volume minimum in cubic units"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input volume maximum in cubic units"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RemapAverageScalarValuetoCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nOutVectorField; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scalar field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input volume minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input volume maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x158
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_RampCPLinearRandom : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp rate min"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecRateMin; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ramp rate max"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecRateMax; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetParentControlPointsToChildCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of children to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nNumControlPoints; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first parent control point to set from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstSourcePoint; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOrientation; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 12
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointPositions : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "set positions in world space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseWorldLocation; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherit CP orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOrient; // 0x141
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only set position once"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOnce; // 0x142
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "second control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP2; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "third control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP3; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fourth control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP4; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first control point location"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP1Pos; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "second control point location"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP2Pos; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "third control point location"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP3Pos; // 0x16c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fourth control point location"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP4Pos; // 0x178
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to offset positions from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHeadLocation; // 0x184
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetSingleControlPointPosition : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "set positions in world space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseWorldLocation; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only set position once"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOnce; // 0x141
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point location"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCP1Pos; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to offset positions from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHeadLocation; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 704
2023-03-15 18:34:46 +00:00
class C_OP_SetRandomControlPointPosition : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "set positions in world space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseWorldLocation; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inherit CP orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOrient; // 0x141
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to offset positions from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHeadLocation; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "re-randomize rate (-1 for once only)"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flReRandomRate; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point min"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCPMinPos; // 0x1f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point max"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecCPMaxPos; // 0x204
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInterpolation; // 0x210
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 528
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointOrientation : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "set orientation in world space"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseWorldLocation; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "randomize"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRandomize; // 0x142
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "only set orientation once"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetOnce; // 0x143
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to offset orientation from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHeadLocation; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pitch yaw roll"
// MDefaultString
2023-03-15 19:24:28 +00:00
QAngle m_vecRotation; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pitch yaw roll max"
// MDefaultString
2023-03-15 19:24:28 +00:00
QAngle m_vecRotationB; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flInterpolation; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointFromObjectScale : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPInput; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPOutput; // 0x144
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 12
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_DistanceBetweenCPsToCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "starting control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nStartCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ending control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nEndCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point field"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCPField; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "distance maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxTraceLength; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS Failure Scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLOSScale; // 0x164
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ensure line of sight"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bLOS; // 0x168
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "LOS collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x169
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointToPlayer : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point offset"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP1Pos; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use eye orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOrientToEyes; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointToHand : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hand"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nHand; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point offset"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP1Pos; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use hand orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOrientToHand; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointToHMD : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point offset"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP1Pos; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use hmd orientation"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOrientToHMD; // 0x150
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 480
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointPositionToTimeOfDayValue : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointNumber; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "time-of-day parameter"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_pszTimeOfDayParameter; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "default value"
// MDefaultString
2023-03-15 19:24:28 +00:00
Vector m_vecDefaultValue; // 0x1c4
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointToCenter : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point number to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP1; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "center offset"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecCP1Pos; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_StopAfterCPDuration : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "duration at which to stop"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flDuration; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "destroy all particles immediately"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDestroyImmediately; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "play end cap effect"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPlayEndCap; // 0x1e9
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointRotation : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "rotation axis"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecRotAxis; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "rotation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotRate; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCP; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "local space control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLocalCP; // 0x154
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 368
2023-03-15 18:34:46 +00:00
class C_OP_RemapCPtoCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "input control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputControlPoint; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nInputField; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nOutputField; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x15c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use the derivative"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDerivative; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "interpolation"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInterpRate; // 0x164
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 352
2023-03-15 18:34:46 +00:00
class C_OP_HSVShiftToCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "Target color control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nColorCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Color Gem Enable control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nColorGemEnableCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Default HSV Color"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_DefaultHSVColor; // 0x14c
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointToImpactPoint : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPOut; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point to trace from"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPIn; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace update rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flUpdateRate; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max trace length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTraceLength; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "offset end point amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOffset; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace direction override"
// MDefaultString
// MVectorIsCoordinate
2023-03-15 19:24:28 +00:00
Vector m_vecTraceDir; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "trace collision group"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[128] m_CollisionGroupName; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set to trace endpoint if no collision"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSetToEndpoint; // 0x1e0
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SetCPOrientationToPointAtCP : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "CP to point towards"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nInputCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "CP to set"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputCP; // 0x144
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_EnableChildrenFromParentParticleCount : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first child to enable"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFirstChild; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max # of children to enable (-1 for max particle count)"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nNumChildrenToEnable; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 832
2023-03-15 18:34:46 +00:00
class C_OP_SelectivelyEnableChildren : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "first child to enable"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nFirstChild; // 0x1e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "# of children to enable"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_nNumChildrenToEnable; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "play endcap when children are removed"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bPlayEndcapOnStop; // 0x338
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "destroy particles immediately when child is removed"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDestroyImmediately; // 0x339
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_PlayEndCapWhenFinished : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "play when emission ends"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bFireOnEmissionEnd; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "wait for children to finish"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIncludeChildren; // 0x141
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_ForceControlPointStub : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_ControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 9
2023-03-15 19:24:28 +00:00
// Size: 384
2023-03-15 18:34:46 +00:00
class C_OP_DriveCPFromGlobalSoundFloat : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "output control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputControlPoint; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nOutputField; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMin; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "input maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flInputMax; // 0x14c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output minimum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMin; // 0x150
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "output maximum"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flOutputMax; // 0x154
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sound stack name"
2023-03-15 19:24:28 +00:00
CUtlString m_StackName; // 0x158
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sound operator name"
2023-03-15 19:24:28 +00:00
CUtlString m_OperatorName; // 0x160
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sound field name"
2023-03-15 19:24:28 +00:00
CUtlString m_FieldName; // 0x168
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 336
2023-03-15 18:34:46 +00:00
class C_OP_SetControlPointFieldToWater : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "source CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSourceCP; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "dest CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nDestCP; // 0x144
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "dest control point component"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nCPField; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 832
2023-03-15 18:34:46 +00:00
class C_OP_RepeatedTriggerChildGroup : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Within-Cluster Refire Time"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flClusterRefireTime; // 0x148
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Within-Cluster Fire Count Before Cooldown"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flClusterSize; // 0x1f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Cluster Cooldown Time"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flClusterCooldown; // 0x298
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_ChooseRandomChildrenInGroup : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "group ID to affect"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nChildGroupID; // 0x140
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Number of Children to Use"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flNumberOfChildren; // 0x148
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 496
2023-03-15 18:34:46 +00:00
class C_OP_SetSimulationRate : public CParticleFunctionPreEmission, CParticleFunctionOperator, CParticleFunction
{
public:
// MPropertyFriendlyName "simulation timescale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flSimulationScale; // 0x140
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RenderPoints : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "material"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmat )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeIMaterial2 > m_hMaterial; // 0x190
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 16
2023-03-15 19:24:28 +00:00
// Size: 2400
2023-03-15 18:34:46 +00:00
class CBaseTrailRenderer : public CBaseRendererSource2, CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "orientation type"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeChoiceEnumName
2023-03-15 19:24:28 +00:00
int32_t m_nOrientationType; // 0x360
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "orientation control point"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOrientationControlPoint; // 0x364
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "minimum visual size"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flMinSize; // 0x368
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "maximum visual size"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flMaxSize; // 0x36c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "size at which to start fading"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flStartFadeSize; // 0x370
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "size at which to fade away"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flEndFadeSize; // 0x418
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "depth comparison bias"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
float m_flDepthBias; // 0x4c0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "radius scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRadiusScale; // 0x4c8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flAlphaScale; // 0x570
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecColorScale; // 0x618
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleColorBlendType_t m_nColorBlendType; // 0x948
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Clamp Non-Sheet texture V coords"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClampV; // 0x94c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "horizontal texture scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFinalTextureScaleU; // 0x950
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "vertical texture scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFinalTextureScaleV; // 0x954
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "horizontal texture offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFinalTextureOffsetU; // 0x958
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "vertical texture offset"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFinalTextureOffsetV; // 0x95c
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 19
2023-03-15 19:24:28 +00:00
// Size: 4768
2023-03-15 18:34:46 +00:00
class C_OP_RenderTrails : public CBaseTrailRenderer, CBaseRendererSource2, CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "enable fading and clamping"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
bool m_bEnableFadingAndClamping; // 0x960
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxLength; // 0x964
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "min length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinLength; // 0x968
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ignore delta time"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreDT; // 0x96c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "constrain radius to no more than this times the length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flConstrainRadiusToLengthRatio; // 0x970
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount to scale trail length by"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLengthScale; // 0x974
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "how long before a trail grows to its full length"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLengthFadeInTime; // 0x978
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "head taper scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flRadiusHeadTaper; // 0x980
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "head color scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecHeadColorScale; // 0xa28
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "head alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flHeadAlphaScale; // 0xd58
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tail taper scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flRadiusTaper; // 0xe00
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tail color scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecTailColorScale; // 0xea8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tail alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flTailAlphaScale; // 0x11d8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "texture UV horizontal Scale field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nHorizCropField; // 0x1280
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "texture UV vertical Scale field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nVertCropField; // 0x1284
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Trail forward shift (fraction)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flForwardShift; // 0x1288
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Flip U or V texcoords if pitch or yaw go over PI"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bFlipUVBasedOnPitchYaw; // 0x128c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Anchor point source"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nPrevPntSource; // 0x1290
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Use particle system topology"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseTopology; // 0x1294
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 37
2023-03-15 19:24:28 +00:00
// Size: 2160
2023-03-15 18:34:46 +00:00
class C_OP_RenderRopes : public CBaseRendererSource2, CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "enable fading and clamping"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
bool m_bEnableFadingAndClamping; // 0x360
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "minimum visual size"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flMinSize; // 0x364
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "maximum visual size"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flMaxSize; // 0x368
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "size at which to start fading"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flStartFadeSize; // 0x36c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "size at which to fade away"
// MDefaultString
// MPropertyGroupName "Fading and culling"
2023-03-15 19:24:28 +00:00
float m_flEndFadeSize; // 0x370
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount to taper the width of the trail end by"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusTaper; // 0x374
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minium number of quads per render segment"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMinTesselation; // 0x378
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum number of quads per render segment"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nMaxTesselation; // 0x37c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tesselation resolution scale factor"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTessScale; // 0x380
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "texture V World Size"
// MDefaultString
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flTextureVWorldSize; // 0x384
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "texture V Scroll Rate"
// MDefaultString
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flTextureVScrollRate; // 0x388
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "texture V Offset"
// MDefaultString
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flTextureVOffset; // 0x38c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "texture V Params CP"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
int32_t m_nTextureVParamsCP; // 0x390
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "horizontal texture scale"
// MDefaultString
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureScaleU; // 0x394
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "vertical texture scale"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureScaleV; // 0x398
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "horizontal texture offset"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureOffsetU; // 0x39c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "vertical texture offset"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flFinalTextureOffsetV; // 0x3a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Clamp Non-Sheet texture V coords"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
bool m_bClampV; // 0x3a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale CP start"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP1; // 0x3a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale CP end"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP2; // 0x3ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale V world size by CP distance"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flScaleVSizeByControlPointDistance; // 0x3b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale V scroll rate by CP distance"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flScaleVScrollByControlPointDistance; // 0x3b4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale V offset by CP distance"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flScaleVOffsetByControlPointDistance; // 0x3b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Use scalar attribute for texture coordinate"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
bool m_bUseScalarForTextureCoordinate; // 0x3bd
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scalar to use for texture coordinate"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nScalarFieldForTextureCoordinate; // 0x3c0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale value to map attribute to texture coordinate"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyGroupName "Texture Coordinates"
2023-03-15 19:24:28 +00:00
float m_flScalarAttributeTextureCoordScale; // 0x3c4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "orientation_type"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeChoiceEnumName
2023-03-15 19:24:28 +00:00
int32_t m_nOrientationType; // 0x3c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "attribute to use for normal"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_vector"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nVectorFieldForOrientation; // 0x3cc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "draw as opaque"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDrawAsOpaque; // 0x3d0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "generate normals for cylinder"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bGenerateNormals; // 0x3d1
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "reverse point order"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bReverseOrder; // 0x3d2
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "radius scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRadiusScale; // 0x3d8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flAlphaScale; // 0x480
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecColorScale; // 0x528
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleColorBlendType_t m_nColorBlendType; // 0x858
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Closed loop"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bClosedLoop; // 0x85c
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "depth comparison bias"
// MDefaultString
// MPropertyGroupName "Depth buffer control and effects"
2023-03-15 19:24:28 +00:00
float m_flDepthBias; // 0x860
2023-03-15 18:34:46 +00:00
};
// Aligment: 8
2023-03-15 19:24:28 +00:00
// Size: 464
2023-03-15 18:34:46 +00:00
class C_OP_RenderAsModels : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "models"
2023-03-15 19:24:28 +00:00
CUtlVector< ModelReference_t > m_ModelList; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale factor for radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flModelScale; // 0x1ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale model to match particle size"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bFitToModelSize; // 0x1b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "non-uniform scaling"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bNonUniformScaling; // 0x1b1
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "X axis scaling scalar field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nXAxisScalingAttribute; // 0x1b4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Y axis scaling scalar field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nYAxisScalingAttribute; // 0x1b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Z axis scaling scalar field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nZAxisScalingAttribute; // 0x1bc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model size cull bloat"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_size_cull_bloat"
2023-03-15 19:24:28 +00:00
int32_t m_nSizeCullBloat; // 0x1c0
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 448
2023-03-15 18:34:46 +00:00
class C_OP_RenderLights : public C_OP_RenderPoints, CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "animation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAnimationRate; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "animation type"
// MDefaultString
2023-03-15 19:24:28 +00:00
AnimationType_t m_nAnimationType; // 0x1a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set animation value in FPS"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAnimateInFPS; // 0x1a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "minimum visual size"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinSize; // 0x1ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "maximum visual size"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxSize; // 0x1b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "size at which to start fading"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartFadeSize; // 0x1b4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "size at which to fade away"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flEndFadeSize; // 0x1b8
2023-03-15 18:34:46 +00:00
};
// Aligment: 5
2023-03-15 19:24:28 +00:00
// Size: 432
2023-03-15 18:34:46 +00:00
class C_OP_RenderBlobs : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "cube width"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_cubeWidth; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cutoff radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_cutoffRadius; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "render radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_renderRadius; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale CP (cube width/cutoff/render = x/y/z)"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nScaleCP; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material"
// MDefaultString
// MPropertyAttributeEditor "AssetBrowse( vmat )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeIMaterial2 > m_hMaterial; // 0x1a0
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RenderScreenVelocityRotate : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "rotate rate(dps)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRotateRateDegrees; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "forward angle"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flForwardDegrees; // 0x194
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 37
2023-03-15 19:24:28 +00:00
// Size: 3312
2023-03-15 18:34:46 +00:00
class C_OP_RenderModels : public CParticleFunctionRenderer, CParticleFunction
{
public:
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "activity override"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[256] m_ActivityName; // 0x190
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "model override economy loadout slot type"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
char[256] m_EconSlotName; // 0x290
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "models"
2023-03-15 19:24:28 +00:00
CUtlVector< ModelReference_t > m_ModelList; // 0x390
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "ignore normal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreNormal; // 0x3ac
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "ignore radius"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bIgnoreRadius; // 0x3ad
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "orient model z to normal"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOrientZ; // 0x3ae
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "scale animation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bScaleAnimationRate; // 0x3af
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "reset animation frame on stop"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bResetAnimOnStop; // 0x3b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "set animation frame manually"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bManualAnimFrame; // 0x3b1
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "animation rate scale field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAnimationScaleField; // 0x3b4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "skin number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSkin; // 0x3b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "bodygroup field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nBodyGroupField; // 0x3bc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "submodel field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nSubModelField; // 0x3c0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "animation sequence field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAnimationField; // 0x3c4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "manual animation frame field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nManualFrameField; // 0x3c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model LOD"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nLOD; // 0x3cc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material override"
// MPropertyAttributeEditor "AssetBrowse( vmat )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeIMaterial2 > m_hOverrideMaterial; // 0x3d0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "override translucent materials"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOverrideTranslucentMaterials; // 0x3d8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "skin override CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nSkinCP; // 0x3dc
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model override CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nModelCP; // 0x3e0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model scale CP"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nModelScaleCP; // 0x3e4
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "animation rate"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAnimationRate; // 0x3e8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "animated"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bAnimated; // 0x3ec
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "force looping animations"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bForceLoopingAnimation; // 0x3ed
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "forcedrawinterlevedwithsiblings"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bForceDrawInterlevedWithSiblings; // 0x3ee
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "Only Render in effects bloom pass"
2023-03-15 18:34:46 +00:00
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOnlyRenderInEffectsBloomPass; // 0x3ef
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model override original model only (ignore shapeshift/hex/etc)"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bOriginalModel; // 0x3f0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "suppress tinting of the model"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bSuppressTint; // 0x3f1
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "use raw mesh group (ignore bodygroup field and use submodel field as raw meshgroup)"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseRawMeshGroup; // 0x3f2
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "disable shadows"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bDisableShadows; // 0x3f3
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "render attribute"
// MDefaultString
2023-03-15 19:24:28 +00:00
char[260] m_szRenderAttribute; // 0x3f4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material variables"
2023-03-15 19:24:28 +00:00
CUtlVector< MaterialVariable_t > m_MaterialVars; // 0x4f8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Radius Scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRadiusScale; // 0x510
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flAlphaScale; // 0x5b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color blend"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecColorScale; // 0x660
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color blend type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleColorBlendType_t m_nColorBlendType; // 0x990
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "model component scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleVecInput m_vecComponentScale; // 0x998
2023-03-15 18:34:46 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 10
// Size: 480
2023-03-15 18:34:46 +00:00
class C_OP_RenderProjected : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "project on characters"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProjectCharacter; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "project on world"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProjectWorld; // 0x191
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "project on water"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bProjectWater; // 0x192
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "flip horizontal"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bFlipHorizontal; // 0x193
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "enable projected depth controls"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bEnableProjectedDepthControls; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "min projection depth"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMinProjectionDepth; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "max projection depth"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flMaxProjectionDepth; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material"
// MPropertyAttributeEditor "AssetBrowse( vmat )"
// MDefaultString
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeIMaterial2 > m_hProjectedMaterial; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sheet animation time scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAnimationTimeScale; // 0x1a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "material variables"
2023-03-15 19:24:28 +00:00
CUtlVector< MaterialVariable_t > m_MaterialVars; // 0x1b0
2023-03-15 18:34:46 +00:00
};
2023-03-15 19:24:28 +00:00
// Aligment: 14
// Size: 1280
2023-03-15 18:34:46 +00:00
class C_OP_RenderDeferredLight : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "projected texture use alpha test window"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseAlphaTestWindow; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "projected texture light"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bUseTexture; // 0x191
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusScale; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "alpha scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAlphaScale; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spotlight distance"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flLightDistance; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light start falloff"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flStartFalloff; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spotlight distance falloff"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDistanceFalloff; // 0x1a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "spotlight FoV"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSpotFoV; // 0x1a8
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecColorScale; // 0x1b0
2023-03-15 18:56:19 +00:00
// MPropertyFriendlyName "color blend type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleColorBlendType_t m_nColorBlendType; // 0x4e0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "projected texture alpha test point scale field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAlphaTestPointField; // 0x4e4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "projected texture alpha test range scale field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAlphaTestRangeField; // 0x4e8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "projected texture alpha test sharpness scale field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAlphaTestSharpnessField; // 0x4ec
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "texture"
// MPropertyAttributeEditor "AssetBrowse( vtex )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_hTexture; // 0x4f0
2023-03-15 18:34:46 +00:00
};
2023-03-15 18:56:19 +00:00
// Aligment: 13
2023-03-15 19:24:28 +00:00
// Size: 1616
2023-03-15 18:34:46 +00:00
class C_OP_RenderStandardLight : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "light type"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeChoiceEnumName
2023-03-15 19:24:28 +00:00
int32_t m_nLightType; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color blend"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionVecInput m_vecColorScale; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "color blend type"
// MDefaultString
2023-03-15 19:24:28 +00:00
ParticleColorBlendType_t m_nColorBlendType; // 0x4c8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "intensity"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flIntensity; // 0x4d0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cast shadows"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bCastShadows; // 0x578
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "inner cone angle"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTheta; // 0x57c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "outer cone angle"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPhi; // 0x580
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light radius multiplier"
// MDefaultString
2023-03-15 19:24:28 +00:00
CParticleCollectionFloatInput m_flRadiusMultiplier; // 0x588
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "falloff linearity"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFalloffLinearity; // 0x630
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "render diffuse"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRenderDiffuse; // 0x634
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "render specular"
// MDefaultString
2023-03-15 19:24:28 +00:00
bool m_bRenderSpecular; // 0x635
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light cookie string"
2023-03-15 19:24:28 +00:00
CUtlString m_lightCookie; // 0x638
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "light priority"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nPriority; // 0x640
2023-03-15 18:34:46 +00:00
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_RenderClothForce : public CParticleFunctionRenderer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 0
2023-03-15 19:24:28 +00:00
// Size: 400
2023-03-15 18:34:46 +00:00
class C_OP_Callback : public CParticleFunctionRenderer, CParticleFunction
{
public:
// <no members described>
};
// Aligment: 9
2023-03-15 19:24:28 +00:00
// Size: 448
2023-03-15 18:34:46 +00:00
class C_OP_RenderScreenShake : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "duration scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDurationScale; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusScale; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "frequence scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFrequencyScale; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amplitude scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flAmplitudeScale; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nRadiusField; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "duration field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nDurationField; // 0x1a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "frequency field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nFrequencyField; // 0x1a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amplitude field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nAmplitudeField; // 0x1ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "control point of shake recipient (-1 = global)"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nFilterCP; // 0x1b0
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RenderTonemapController : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "tonemap level scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTonemapLevel; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tonemap weight scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTonemapWeight; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tonemap level"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nTonemapLevelField; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "tonemap weight"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nTonemapWeightField; // 0x19c
2023-03-15 18:34:46 +00:00
};
// Aligment: 12
2023-03-15 19:24:28 +00:00
// Size: 704
2023-03-15 18:34:46 +00:00
class C_OP_RenderSound : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "duration scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flDurationScale; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "decibel level scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flSndLvlScale; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pitch scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPitchScale; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "volume scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flVolumeScale; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "decibel level field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nSndLvlField; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "duration field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nDurationField; // 0x1a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "pitch field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nPitchField; // 0x1a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "volume field"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nVolumeField; // 0x1ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sound channel"
// MDefaultString
// MPropertyAttributeChoiceName "sound_channel"
2023-03-15 19:24:28 +00:00
int32_t m_nChannel; // 0x1b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sound control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nCPReference; // 0x1b4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "sound"
// MDefaultString
// MPropertyAttributeEditor "SoundPicker()"
2023-03-15 19:24:28 +00:00
char[256] m_pszSoundName; // 0x1b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "suppress stop event"
2023-03-15 19:24:28 +00:00
bool m_bSuppressStopSoundEvent; // 0x2b8
2023-03-15 18:34:46 +00:00
};
// Aligment: 7
2023-03-15 19:24:28 +00:00
// Size: 464
2023-03-15 18:34:46 +00:00
class C_OP_RenderStatusEffect : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "color warp texture (3d)"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureColorWarp; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "detail 2 texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureDetail2; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "diffuse warp texture (3d)"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureDiffuseWarp; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fresnel color warp texture (3d)"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureFresnelColorWarp; // 0x1a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "fresnel warp texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureFresnelWarp; // 0x1b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "specular warp texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureSpecularWarp; // 0x1b8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "environment map texture"
// MPropertyAttributeEditor "AssetBrowse( vtex, *showassetpreview )"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeCTextureBase > m_pTextureEnvMap; // 0x1c0
2023-03-15 18:34:46 +00:00
};
// Aligment: 3
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RenderFlattenGrass : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "flattening strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flFlattenStrength; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "strength field override"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nStrengthFieldOverride; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius scale"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadiusScale; // 0x198
2023-03-15 18:34:46 +00:00
};
// Aligment: 10
2023-03-15 19:24:28 +00:00
// Size: 448
2023-03-15 18:34:46 +00:00
class C_OP_RenderTreeShake : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "peak strength"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flPeakStrength; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "peak strength field override"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nPeakStrengthFieldOverride; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "radius"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadius; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "strength field override"
// MDefaultString
// MPropertyAttributeChoiceName "particlefield_scalar"
2023-03-15 19:24:28 +00:00
ParticleAttributeIndex_t m_nRadiusFieldOverride; // 0x19c
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "shake duration after end"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flShakeDuration; // 0x1a0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amount of time taken to smooth between different shake parameters"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTransitionTime; // 0x1a4
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Twist amount (-1..1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flTwistAmount; // 0x1a8
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Radial Amount (-1..1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flRadialAmount; // 0x1ac
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Control Point Orientation Amount (-1..1)"
// MDefaultString
2023-03-15 19:24:28 +00:00
float m_flControlPointOrientationAmount; // 0x1b0
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "Control Point for Orientation Amount"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nControlPointForLinearDirection; // 0x1b4
2023-03-15 18:34:46 +00:00
};
// Aligment: 2
2023-03-15 19:24:28 +00:00
// Size: 416
2023-03-15 18:34:46 +00:00
class C_OP_RenderText : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "outline color"
// MDefaultString
2023-03-15 19:24:28 +00:00
Color m_OutlineColor; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "default text"
2023-03-15 19:24:28 +00:00
CUtlString m_DefaultText; // 0x198
2023-03-15 18:34:46 +00:00
};
// Aligment: 4
2023-03-15 19:24:28 +00:00
// Size: 592
2023-03-15 18:34:46 +00:00
class C_OP_RenderVRHapticEvent : public CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "haptic hand"
// MDefaultString
2023-03-15 18:56:19 +00:00
// MPropertyAttributeChoiceEnumName
2023-03-15 19:24:28 +00:00
int32_t m_nHand; // 0x190
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "hand control point number"
// MDefaultString
2023-03-15 19:24:28 +00:00
int32_t m_nOutputHandCP; // 0x194
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "cp field"
// MDefaultString
// MPropertyAttributeChoiceName "vector_component"
2023-03-15 19:24:28 +00:00
int32_t m_nOutputField; // 0x198
2023-03-15 18:34:46 +00:00
// MPropertyFriendlyName "amplitude"
// MDefaultString
2023-03-15 19:24:28 +00:00
CPerParticleFloatInput m_flAmplitude; // 0x1a0
2023-03-15 18:34:46 +00:00
};
// Aligment: 1
2023-03-15 19:24:28 +00:00
// Size: 2512
2023-03-15 18:34:46 +00:00
class C_OP_RenderFogSprites : public C_OP_RenderSprites, CBaseRendererSource2, CParticleFunctionRenderer, CParticleFunction
{
public:
// MPropertyFriendlyName "material"
2023-03-15 19:24:28 +00:00
CStrongHandle< InfoForResourceTypeIMaterial2 > m_hMaterial; // 0x9c0
2023-03-15 15:20:35 +00:00
};