Files
UnrealEngine/Engine/Plugins/FX/Niagara/Shaders/Private/NiagaraDataInterfacePlatformSetTemplate.ush
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

9 lines
183 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
int {ParameterName}_bIsActive;
void IsActive_{ParameterName}(out bool bIsActive)
{
bIsActive = {ParameterName}_bIsActive != 0;
}