Last active
September 11, 2020 02:04
-
-
Save esperecyan/996e0b2af62f4ac6e0a336597836750e to your computer and use it in GitHub Desktop.
『NeverCompressAssetsOnImport.cs』 Put this script into “Assets/Editor” folder. https://cdn.discordapp.com/attachments/511077066628661271/753798077176873010/NeverCompressAssetsOnImport.unitypackage
This file contains 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
// Author: 100の人 | |
// Distribution URL: https://gist.github.com/esperecyan/996e0b2af62f4ac6e0a336597836750e | |
// SPDX-License-Identifier: CC0-1.0 | |
using UnityEditor; | |
namespace Esperecyan.Unity | |
{ | |
public class NeverCompressAssetsOnImport | |
{ | |
[InitializeOnLoadMethod] | |
private static void Run() | |
{ | |
Unsupported.SetApplicationSettingCompressAssetsOnImport(false); | |
} | |
} | |
} |
This file contains 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
fileFormatVersion: 2 | |
guid: ce847e96beb2afc44be8f26c0688fad5 | |
MonoImporter: | |
externalObjects: {} | |
serializedVersion: 2 | |
defaultReferences: [] | |
executionOrder: 0 | |
icon: {instanceID: 0} | |
userData: | |
assetBundleName: | |
assetBundleVariant: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment