You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Implemented memory limits in streaming GeometryCache from Alembic. There are two settings available under Project Settings > Plugins > Geometry Cache to control the look-ahead buffer and the overall memory limit for all streams. #jira UETOOL-3881 #rb Johan.Duparc #preflight 619c0abe3a72199267381885 #ROBOMERGE-AUTHOR: anousack.kitisa #ROBOMERGE-SOURCE: CL 18269585 in //UE5/Release-5.0/... via CL 18269600 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v895-18170469) [CL 18269614 by anousack kitisa in ue5-release-engine-test branch]
13 lines
294 B
C++
13 lines
294 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "GeometryCacheStreamerSettings.h"
|
|
|
|
UGeometryCacheStreamerSettings::UGeometryCacheStreamerSettings()
|
|
{
|
|
CategoryName = TEXT("Plugins");
|
|
SectionName = TEXT("Geometry Cache");
|
|
|
|
LookAheadBuffer = 4.0f;
|
|
MaxMemoryAllowed = 4096.0f;
|
|
}
|