Skip to content

Commit

Permalink
disable for intle (#3118)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickKhalow authored Jan 17, 2025
1 parent 1037315 commit d0a6802
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Explorer/Assets/Scripts/Global/Dynamic/MainSceneLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ private async UniTask InitializeFlowAsync(CancellationToken ct)

bool compressionEnabled = IPlatform.DEFAULT.IsNot(IPlatform.Kind.Windows) || applicationParametersParser.HasFlag(AppArgsFlags.FORCE_TEXTURE_COMPRESSION);

if (IPlatform.DEFAULT.Is(IPlatform.Kind.Mac) && SystemInfo.processorType!.Contains("Intel", StringComparison.InvariantCultureIgnoreCase))
compressionEnabled = false;

ITexturesFuse TextureFuseFactory() =>
ITexturesFuse.NewDefault();

Expand Down

0 comments on commit d0a6802

Please sign in to comment.