//.bnkファイルから.wemファイルを抽出(1つのみ) public bool Wwise_Extract_To_WEM_File(int Index, string To_File, bool IsOverWrite) { if (File.Exists(To_File) && !IsOverWrite) { return(false); } if (Sounds.Count <= Index || !IsPCKSelected) { return(false); } try { Wwise.ExtractFileIndex(Index, To_File); return(true); } catch { return(false); } }
//.bnkファイルから.wemファイルを抽出(1つのみ) public bool Wwise_Extract_To_WEM_File(int Index, string To_File, bool IsOverWrite) { if (File.Exists(To_File) && !IsOverWrite) { return(false); } if (Sounds.Count <= Index || !IsPCKSelected) { return(false); } try { Wwise.ExtractFileIndex(Index, To_File); return(true); } catch (Exception e) { Sub_Code.Error_Log_Write(e.Message); return(false); } }