Skip to content
This repository has been archived by the owner on Oct 4, 2022. It is now read-only.

PopcornFX decals #504

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/Code/CryEngine/Cry3DEngine/DecalRenderNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class CDecalRenderNode
static void ResetDecalUpdatesCounter() { CDecalRenderNode::m_nFillBigDecalIndicesCounter = 0; }

// SetMatrix only supports changing position, this will do the full transform
void SetMatrixFull(const Matrix34& mat);
virtual void SetMatrixFull(const Matrix34& mat);
public:
CDecalRenderNode();
void RequestUpdate() { m_updateRequested = true; DeleteDecal(); }
Expand Down
1 change: 1 addition & 0 deletions dev/Code/CryEngine/CryCommon/IEntityRenderState.h
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,7 @@ struct IDecalRenderNode
virtual const SDecalProperties* GetDecalProperties() const = 0;
virtual const Matrix34& GetMatrix() = 0;
virtual void CleanUpOldDecals() = 0;
virtual void SetMatrixFull(const Matrix34& mat) = 0;
// </interfuscator:shuffle>
};

Expand Down