Is there a way to do this? I see PlayerSettings.SetIconsForTargetGroup() but it would much easier to reset the default icon. There doesn’t seem to be a way to set the splash screen either. You can do this! Use this: PlayerSettings.SetIconsForTargetGroup(BuildTargetGroup.Unknown, theTexture2DArray); Where theTexture2DArray is an array of the Texture2D asset you want to be the icon. This will set th

