From 0c75b7ece554cae1723df8286314cbe678f14f1d Mon Sep 17 00:00:00 2001 From: JeffR Date: Mon, 18 May 2026 00:24:54 -0500 Subject: [PATCH] Has the PathShapeData constructor proper initialize the mUseEase var which prevents the datablock CRC cache from failing to match. --- Engine/source/T3D/pathShape.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Engine/source/T3D/pathShape.cpp b/Engine/source/T3D/pathShape.cpp index 9370c09e5..f3bd87e9e 100644 --- a/Engine/source/T3D/pathShape.cpp +++ b/Engine/source/T3D/pathShape.cpp @@ -27,6 +27,11 @@ IMPLEMENT_CO_DATABLOCK_V1(PathShapeData); +PathShapeData::PathShapeData() +{ + mUseEase = false; +} + void PathShapeData::consoleInit() { } @@ -143,11 +148,6 @@ bool PathShape::onNewDataBlock(GameBaseData* dptr, bool reload) return true; } -PathShapeData::PathShapeData() -{ - -} - //---------------------------------------------------------------------------- void PathShape::initPersistFields()