2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#include "NiagaraScriptSourceBase.generated.h"
|
|
|
|
|
|
2014-11-14 13:13:42 -05:00
|
|
|
|
|
|
|
|
struct EditorExposedVectorConstant
|
|
|
|
|
{
|
|
|
|
|
FName ConstName;
|
|
|
|
|
FVector4 Value;
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-08 11:49:58 -05:00
|
|
|
struct EditorExposedVectorCurveConstant
|
|
|
|
|
{
|
|
|
|
|
FName ConstName;
|
|
|
|
|
class UCurveVector *Value;
|
|
|
|
|
};
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
/** Runtime data for a Niagara system */
|
|
|
|
|
UCLASS(MinimalAPI)
|
|
|
|
|
class UNiagaraScriptSourceBase : public UObject
|
|
|
|
|
{
|
2015-03-17 05:38:32 -04:00
|
|
|
GENERATED_UCLASS_BODY()
|
2014-11-14 13:13:42 -05:00
|
|
|
|
|
|
|
|
TArray<TSharedPtr<EditorExposedVectorConstant> > ExposedVectorConstants;
|
2015-01-08 11:49:58 -05:00
|
|
|
TArray<TSharedPtr<EditorExposedVectorCurveConstant> > ExposedVectorCurveConstants;
|
2014-11-17 11:11:38 -05:00
|
|
|
virtual void Compile() {};
|
2015-03-17 05:38:32 -04:00
|
|
|
};
|