發表文章

UE Console Tips & Tricks

CE(Custom Event) // Level Blueprint Custom Event e.g. CE TestEvent (X=1.000000,Y=2.000000,Z=3.000000) KE(Kismet Event) // Blueprint Class Custom Event e.g.  KE * TestFunction KE BP_TestEvent_C TestFunction Console Tips & Tricks 【UE4】ConsoleCommand「CE,KE」について【★★☆】

[UE4.27] Fix Moire Effect

圖片
Cause: When the character moves, it overlaps with a specific material and causes afterimages Solve: Material > NormalMap(Texture).LevelOfDetail.MipGenSettings=Blur3 Or Anti-aliasing method: TAA > TSR

[UE4.26] File and Folder Management, Create, Find, Delete

DeleteFile bool UBPLibrary::DeleteFile(FString Path) { IPlatformFile& FileManager = FPlatformFileManager::Get().GetPlatformFile(); return FileManager.DeleteFile(*Path); } DeleteDirectory bool UBPLibrary::DeleteDirectory(FString Path) { IPlatformFile& FileManager = FPlatformFileManager::Get().GetPlatformFile(); return FileManager.DeleteDirectoryRecursively(*Path); } Reference Link:  File and Folder Management, Create, Find, Delete

解決在Windows10中CMD暫停執行的問題

圖片
 停用「Quick Edit Mode」 Keywords: windows 10, quick edit mode Ref: https://www.statmodel.com/download/QuickEdit.pdf

憑證失效網頁打不開,神奇的"thisisunsafe"命令繞過chrome安全檢查

 直接在視窗上輸入"thisisunsafe" 參考連結: thisisunsafe神奇操作 When you use 'badidea' or 'thisisunsafe' to bypass a Chrome certificate/HSTS error...

[UE4] Find InputKey in Blueprint

Search > Nodes(Name=[keyName] ClassName=key) Reference: https://docs.unrealengine.com/4.27/en-US/ProgrammingAndScripting/Blueprints/Search/

[UE4] TortoiseSVN Diff & Merge - UE4 asset file

TortoiseSVN Diff - ue4 .uasset TortoiseSVN > Settings > Diff Viewer > Advanced... add... ${UE4_ENGINE_ROOT}\Engine\Binaries\Win64\UE4Editor.exe -diff %base %mine TortoiseSVN Merge - ue4 .uasset TortoiseSVN > Settings > Diff Viewer > Merge Tool > Advanced... add... ${UE4_ENGINE_ROOT}\Engine\Binaries\Win64\UE4Editor.exe -diff %theirs %mine %base %merged Ref: [UE4] 怎麼設定tortoisegit來diff uasse