バージョン

    その他のドキュメント

menu_open
Wwise SDK 2023.1.2
ak.wwise.core.log.get

特定のチャンネルの、最後のログを取得します。Refer to ak.wwise.core.log.itemAdded to be notified when an item is added to the log. The log is empty when used in WwiseConsole.

Arguments

Name タイプ 概要
channel * string ログチャンネル。
ログチャンネル。可能な値:
  • soundbankGenerate
  • conversion
  • copyPlatformSettings
  • waapi
  • projectLoad
  • general
  • sourceControl
  • lua

(必須*)

引数スキーマ

Result

Name タイプ 概要
items * array ログのエントリ。
items [...] object ログのエントリ。
items[...].severity * string
  • Message: Does not affect the integrity of the current operation. - Warning: Might affect the integrity of the current operation. - Error: Affects the integrity of the current operation. - Fatal Error: Prevents the completion of the current operation. 可能な値:
    • Message
    • Warning
    • Error
    • Fatal Error
items[...].time * integer システムクロックによる、UTCの1970年1月1日午前0時0分0秒(00:00:00)からの経過秒数。
items[...].messageId * string ログアイテムのメッセージID。
items[...].message * string ログアイテムの説明メッセージ。
items[...].platform object ログアイテムが報告されたプラットフォームの、IDと名前。
items[...].platform.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.name string オブジェクト名。
items[...].platform.notes string オブジェクトのnotes。
items[...].platform.type string オブジェクトのタイプ。使用可能なタイプの詳細については、 Wwiseオブジェクトリファレンス を参照してください。
items[...].platform.pluginName string Source、Effect、Mixer、Device、Metadataプラグインの、プラグイン名。
items[...].platform.path string プロジェクトルートからオブジェクトへのパス。例: '\Actor-Mixer Hierarchy\Default Work Unit\Sound1'
items[...].platform.parent object 階層におけるオブジェクトの親。
items[...].platform.parent.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.parent.name string オブジェクト名。
items[...].platform.owner object オブジェクトのオーナー。カスタムエフェクトやカスタム減衰など、ほかのオブジェクトにローカルで所有されているオブジェクトが、該当します。
items[...].platform.owner.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.owner.name string オブジェクト名。
items[...].platform.isPlayable boolean オブジェクトをTransportで再生できる場合は、trueです。
items[...].platform.shortId integer オブジェクトのShort ID。
items[...].platform.classId integer オブジェクトのクラスID。
符号なし整数32-bit。範囲: [0,4294967295]
items[...].platform.category string オブジェクトのカテゴリ。例: 'Actor-Mixer Hierarchy'
items[...].platform.filePath string オブジェクトを含むファイルへのパス。パスは、Work Unitファイルまたはプロジェクトファイルとします。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.workunit object オブジェクトを含む、親Work Unit。'id'と'name'を返します。
items[...].platform.workunit.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.workunit.name string オブジェクト名。
items[...].platform.childrenCount number このオブジェクトの子の数。注:これは非推奨です。The same result can be obtained with children.count().
items[...].platform.totalSize integer このオブジェクトと、その全ての子が、SoundBankに占めるスペース(単位byte)。objectSizeは含まれません。なお、正確な値を得るには、SoundBankを生成する必要があります。
items[...].platform.mediaSize integer このオブジェクトとその全ての子のメディアファイルの、変換後の合計サイズ(単位bytes)。なお、正確な値を得るには、SoundBankを生成する必要があります。
items[...].platform.objectSize integer このオブジェクトのメタデータがSoundBankに占めるスペース(単位byte)。メディアファイルは含まれません。なお、正確な値を得るには、SoundBankを生成する必要があります。
items[...].platform.structureSize integer このオブジェクトとその全ての子のメタデータが、SoundBankに占めるスペース(単位byte)。メディアファイルは含まれません。なお、正確な値を得るには、SoundBankを生成する必要があります。
items[...].platform.musicTransitionRoot object (DEPRECATED) The music transition root containing all other music transitions recursively. 注:これは非推奨です。The TransitionRoot reference should be used instead.
items[...].platform.musicTransitionRoot.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.musicPlaylistRoot object (DEPRECATED) The music playlist root containing all other music playlist items recursively. これが適用されるのは、Music Playlist Containerだけです。注:これは非推奨です。The PlaylistRoot reference should be used instead.
items[...].platform.musicPlaylistRoot.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.originalWavFilePath string (DEPRECATED) Absolute path to the original wav file. これは、SoundオブジェクトとAudio Sourceオブジェクトだけで有効です。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.originalFilePath string Absolute path to the original file. これは、SoundオブジェクトとAudio Sourceオブジェクトだけで有効です。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.originalRelativeFilePath string Relative (from project's Originals Folder) path to the original file. これは、SoundオブジェクトとAudio Sourceオブジェクトだけで有効です。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.activeSource object The active source of the sound object.
items[...].platform.activeSource.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.activeSource.name string オブジェクト名。
items[...].platform.convertedWemFilePath string (DEPRECATED) Absolute path to the converted wem file. 選択肢からプラットフォームを指定。これは、SoundオブジェクトとAudio Sourceオブジェクトだけで有効です。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.convertedFilePath string Absolute path to the converted file. 選択肢からプラットフォームを指定。これは、SoundオブジェクトとAudio Sourceオブジェクトだけで有効です。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.soundbankBnkFilePath string SoundBankオブジェクトに関連する、生成後のSoundBankファイルへの絶対パス。これは、SoundBankオブジェクトだけで有効です。WAAPIをMacで使う場合は、 MacでWAAPIを使う を参照してください。
items[...].platform.playbackDuration object 最小と最大のdurationと、durationタイプを含む、durationルート。注:これは非推奨です。The duration should be used instead. これは、Audio Sourceオブジェクトをソースとして直接含むことができるオブジェクト、または子孫を通して間接的に含むことができるオブジェクト全てに、適用されます。
items[...].platform.playbackDuration.playbackDurationMin number 再生にかかる最短時間。
items[...].platform.playbackDuration.playbackDurationMax number 再生にかかる最長時間。
items[...].platform.playbackDuration.playbackDurationType string durationタイプ。
items[...].platform.duration object 最小と最大のdurationと、durationタイプを含む、durationルート。これは、Audio Sourceオブジェクトをソースとして直接含むことができるオブジェクト、または子孫を通して間接的に含むことができるオブジェクト全てに、適用されます。
items[...].platform.duration.min number 再生にかかる最短時間。
items[...].platform.duration.max number 再生にかかる最長時間。
items[...].platform.duration.type string durationタイプ。
items[...].platform.maxDurationSource object 最長のdurationのオーディオソース。これは、Audio Sourceオブジェクトをソースとして直接含むことができるオブジェクト、または子孫を通して間接的に含むことができるオブジェクト全てに、適用されます。
items[...].platform.maxDurationSource.id string 最長の長さのオーディオソースオブジェクトの、ID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.maxDurationSource.trimmedDuration number トリムした最長のソースの、durationを秒単位で示します。
items[...].platform.audioSourceTrimValues object オーディオソースをトリムした時間の範囲。
items[...].platform.audioSourceTrimValues.trimBegin number トリム開始の時間値を、秒単位で示します。
items[...].platform.audioSourceTrimValues.trimEnd number トリム終了の時間値を、秒単位で示します。
items[...].platform.maxRadiusAttenuation object 半径が最大の減衰。これは、Audio Sourceオブジェクトをソースとして直接含むことができるオブジェクト、または子孫を通して間接的に含むことができるオブジェクト全てに、適用されます。
items[...].platform.maxRadiusAttenuation.id string 半径が最大の減衰オブジェクトの、ID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.maxRadiusAttenuation.radius number 減衰オブジェクトの半径。
items[...].platform.audioSourceLanguage object オーディオソースに関連付けられたランゲージ。これは、Audio Sourceオブジェクトに、直接適用されるだけです。
items[...].platform.audioSourceLanguage.id string Audio Sourceオブジェクトに関連するLanguageオブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.audioSourceLanguage.name string Audio Sourcオブジェクトか関連付けられているLanguageオブジェクトの名前。
items[...].platform.workunitIsDefault boolean ワークユニットがデフォルトであれば、true。
items[...].platform.workunitType string Work Unitのタイプ。なお、Work Unitsと同様に、物理フォルダにも"WorkUnit"というタイプがあります。物理フォルダには、workunitType "folder"があります。可能な値:
  • folder
  • rootFile
  • nestedFile
items[...].platform.workunitIsDirty boolean Work UnitまたはProject(wprojファイル)がダーティである場合、つまり変更したあとに保存していない場合は、true。
items[...].platform.switchContainerChildContext object Switch Containerの子に関連付けられた、コンテキストオブジェクト。子に関連する、Switch Containerのコンテキストに依存するプロパティを、このオブジェクトが保持します(例えば、'1st only'チェックボックスのプロパティなど)。
items[...].platform.switchContainerChildContext.id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.isExplicitMute boolean Whether or not the object has been muted explicitly. Explicitly muting an object implicitly mutes the descendant objects.
items[...].platform.isExplicitSolo boolean Whether or not the object has been soloed explicitly. Soloing an object silences all the other objects in the project except this one.
items[...].platform.isImplicitMute boolean Whether or not the object has been muted implicitly. Explicitly muting an object implicitly mutes the descendant objects.
items[...].platform.isImplicitSolo boolean Whether or not the object has been soloed implicitly. Soloing an object silences all the other objects in the project except this one.
items[...].platform.isIncluded boolean Whether or not the object is Included. 選択肢からプラットフォームを指定。This takes into consideration the Inclusion status of the object's ancestors.
items[...].platform.points array This only applies to Curve objects.
An array of points defining a curve.
items[...].platform.points [...] object カーブ上の点。
items[...].platform.points[...].x * number カーブの点の、X座標。
items[...].platform.points[...].y * number カーブの点の、Y座標。
items[...].platform.points[...].shape * string この点から、次の点までの、カーブセグメントの形状。可能な値:
  • Constant
  • Linear
  • Log3
  • Log2
  • Log1
  • InvertedSCurve
  • SCurve
  • Exp1
  • Exp2
  • Exp3
items[...].platform.stateProperties array An array of state properties to set.
items[...].platform.stateProperties [...] string The name of the property to set.
items[...].platform.stateGroups array The State Group objects associated with this object.
items[...].platform.stateGroups [...] object A State Group object.
items[...].platform.stateGroups[...].id string The ID (GUID) of the State Group object.
An object GUID of the form: {aabbcc00-1122-3344-5566-77889900aabb}.
items[...].platform.stateGroups[...].name string The name of the State Group object.
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) any of: クエリを構成し、プロパティ値またはオブジェクトリファレンスを出す、ドット区切りのアクセサを指定します。1つの@マークは、関連するオブジェクトのプロパティ値を示します。2つの@マークは、ソースがオーバーライドするプロパティ値を示します。使用可能なすべてのタイプの、プロパティやリファレンスの詳細については、 Wwiseオブジェクトリファレンス を参照してください。
string 文字列値。
array An array of string values.
number 数値。
array An array of numeric values.
boolean ブール値。
array An array of boolean values.
object オブジェクトのリファレンス値。
array オブジェクトリストのリファレンス値。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] string 文字列値。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] number 数値。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] boolean ブール値。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$).id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$).name string オブジェクト名。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] object オブジェクトのリファレンス値。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$)[...].id string オブジェクトのID(GUID)。
オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。
items[...].platform.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$)[...].name string オブジェクト名。
items[...].parameters array ログアイテム内のパラメータのアレイ。これは、パラメータがなければ存在しません。
items[...].parameters [...] string ログエントリのパラメータ。通常は、オブジェクト名です。

(必須*)

結果スキーマ

関連情報

Wwise Authoring APIの詳細は、 Wwise Authoring API (WAAPI)を使用する を参照してください。


このページはお役に立ちましたか?

サポートは必要ですか?

ご質問や問題、ご不明点はございますか?お気軽にお問い合わせください。

サポートページをご確認ください

あなたのプロジェクトについて教えてください。ご不明な点はありませんか。

プロジェクトを登録していただくことで、ご利用開始のサポートをいたします。

Wwiseからはじめよう