ASSERTION FAILED: TLS ALLOCATOR ALLOC_TEMP_THREAD...
ASSERTION FAILED: TLS ALLOCATOR ALLOC_TEMP_THREAD
今天碰到了類似的問題,不過是在Android下才出現的。
Same thing on 2017.3.0.f3 with android.
Reimport All didn't resolved the issue...
So I tested ton of things and one thing worked to me :
At the root of your project,within the Project view/search bar,
- type (in order to display all the textures):
- t:texture2d
- Select all your textures and apply the compression "normal quality" and use Crunch compression => No
After this big reset you can change back your quality settings :)
查到這個解決辦法,然後發現圖片太多,沒辦法查,反正原理知道了,寫個程式碼篩選就行
[MenuItem( "Test/tttt" )]
public static void Testttttt()
{
foreach( var assetPath in AssetDatabase.GetAllAssetPaths() )
{
var texture = AssetDatabase.LoadAssetAtPath<Texture2D>( assetPath );
if( texture != null )
{
var importer = AssetImporter.GetAtPath( assetPath ) as TextureImporter;
if(importer!=null && importer.crunchedCompression )
{
Debug.Log(assetPath);
//Find
}
}
}
}
相關文章
- 安裝CLUSTER碰到 Assertion failed offset fFileSize錯誤AI
- allocator、polymorphic allocator 與 memory_resource
- _gcry_ath_mutex_lock: Assertion `*lock == ((ath_mutex_t) 0)' failed.GCMutexAI
- Go's AllocatorGo
- tensorflow.python.framework.errors_impl.InvalidArgumentError: assertion failed: [0] [Op:Assert] namePythonFrameworkErrorAI
- VS C++ 出現debug assertion failed彈框,怎麼定位程式碼C++AI
- 問題解決:shared_ptr Assertion px != 0 failed 及debug經驗分享AI
- Assertion failure 錯誤AI
- vulnhub - ASSERTION1.0.1
- Eigen::aligned_allocator
- Assertion failure in -[UICollectionViewData validateLayoutInRect:]AIUIView
- C++中std::allocator的使用C++
- ORA-29516: Aurora assertion failure: Assertion failure at joez.c:3311AI
- TLS Poison - When TLS Hack youTLS
- tensorflow原始碼解析之framework-allocator原始碼Framework
- Assertion failure in -[UITableView -configureCellForDisplay:forIndexPath:]AIUIViewIndex
- SSL,TLSTLS
- diy tlsTLS
- [SSL/TLS] SSL/TLS協議綜合總結TLS協議
- 轉:Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]AIUIViewIndex
- MongoDB報錯:"assertion" : "can't map file memory"MongoDB
- SSL/TLS協議安全系列:SSL/TLS概述TLS協議
- TLS 詳解TLS
- 【TLS協議】TLS協議
- cannot convert (type interface {}) to type int: need type assertion
- SGI STL學習筆記(1):空間配置器(allocator)筆記
- Docker Are you trying to connect to a TLS-enabled daemon without TLS?DockerTLS
- 簡介TLS 1.3TLS
- TLS 1.3 IntroductionTLS
- 淺談 TLS 1.3TLS
- 完全吃透 TLS/SSLTLS
- [HTTPS]SSL/TLSHTTPTLS
- Python中不盡如人意的斷言AssertionPython
- SSL和TLS 區別TLS
- SSL與TLS協議TLS協議
- 聊一聊 TLS/SSLTLS
- https/tcp ssh/tlsHTTPTCPTLS
- Secure gRPC with TLS/SSLRPCTLS