fix: resolve C4996 deprecation warnings in asset/material query tools#287
Open
Mistweaver wants to merge 1 commit into
Open
fix: resolve C4996 deprecation warnings in asset/material query tools#287Mistweaver wants to merge 1 commit into
Mistweaver wants to merge 1 commit into
Conversation
Replace deprecated UE 5.7 APIs flagged at build time: - QueryEnumTool: IAssetRegistry::GetAssetByObjectPath(FName) -> GetAssetByObjectPath(FSoftObjectPath) - QueryMaterialTool: UMaterialExpression::GetInputsView() -> FExpressionInputIterator (the engine's canonical bounded traversal; terminates when GetInput() returns nullptr past CachedInputs.Num()). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The SoftUEBridge editor plugin emits two
C4996deprecation warnings when built against UE 5.7. The engine states these APIs will become hard compile errors in the next release, so this updates them to the current APIs.Changes
IAssetRegistry::GetAssetByObjectPath(FName)→GetAssetByObjectPath(FSoftObjectPath). TheFNamepath overload is deprecated;FSoftObjectPathis constructed directly from the path string.UMaterialExpression::GetInputsView()→FExpressionInputIterator, the engine''s canonical bounded traversal. It advances viaGetInput(Index)and terminates when that returnsnullptrpastCachedInputs.Num(), preserving the original loop''s bounded-iteration intent.Verification
C++ plugin changes — not compile-verified locally (requires the UE editor). Both replacement APIs were confirmed against the UE 5.7 engine headers (
Materials/MaterialExpression.h,IAssetRegistry).🤖 Generated with Claude Code