Console noise purge: deprecated-API fixes + PixelArtDevControls legacy-Input exception

MenuUi FindAnyObjectByType; GA prefabAssetPath->assetPath x2; Synty sample
FindObjectsByType overload; dead death_b field removed. Real bug caught by
the sweep: the F3 pixel-art toggle used legacy Input.GetKeyDown under
Input System-only handling -> InvalidOperationException every frame in Play.
Suite green (455).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-07 22:00:16 -07:00
parent 03fb4052e8
commit a4b6bb9dfe
7 changed files with 8 additions and 170 deletions
@@ -33,7 +33,7 @@ namespace Synty.Interface.SciFiSoldierHUD.Samples
private void GetSliders()
{
#if UNITY_2022_1_OR_NEWER
sliders = FindObjectsByType<Slider>(FindObjectsInactive.Exclude, FindObjectsSortMode.None).ToList();
sliders = FindObjectsByType<Slider>(FindObjectsInactive.Exclude).ToList();
#else
sliders = FindObjectsOfType<Slider>().ToList();
#endif