UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
MaterialExpressionTemporalSobol.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
8#include "MaterialExpressionTemporalSobol.generated.h"
9
10UCLASS(MinimalAPI)
12{
14
15public:
16
17 UPROPERTY(meta = (
18 RequiredInput = "false",
19 Tooltip="Sobol point number. Use Const Index if not connected."))
21
22 UPROPERTY(meta = (
23 RequiredInput = "false",
24 Tooltip="2D Seed for sequence randomization (0,0)-(1,1). Use Const Seed if not connected."))
26
27 UPROPERTY(EditAnywhere, Category = MaterialExpressionSobol, meta = (
28 OverridingInputProperty = "Index",
29 Tooltip="Sobol point number. Only used if Index is not connected."))
31
32 UPROPERTY(EditAnywhere, Category = MaterialExpressionSobol, meta = (
33 OverridingInputProperty = "Seed",
34 Tooltip="2D Seed for sequence randomization. Only used if Seed is not connected."))
35 FVector2D ConstSeed = FVector2D(0.f, 0.f);
36
37 //~ Begin UMaterialExpression Interface
38#if WITH_EDITOR
39 virtual int32 Compile(class FMaterialCompiler* Compiler, int32 OutputIndex) override;
40 virtual void GetCaption(TArray<FString>& OutCaptions) const override;
41#endif
42 //~ End UMaterialExpression Interface
43};
44
45
46
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UPROPERTY(...)
UObject definition macros.
Definition ObjectMacros.h:744
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UCLASS(...)
Definition ObjectMacros.h:776
if(Failed) console_printf("Failed.\n")
uint32_t uint32
Definition binka_ue_file_header.h:6
Definition MaterialCompiler.h:109
Definition Array.h:670
Definition MaterialExpressionTemporalSobol.h:12
UPROPERTY(meta=(RequiredInput="false", Tooltip="Sobol point number. Use Const Index if not connected.")) FExpressionInput Index
Definition MaterialExpression.h:150
@ false
Definition radaudio_common.h:23
U16 Index
Definition radfft.cpp:71
Definition MaterialExpressionIO.h:23