Wwise SDK 2023.1.8
|
하나 또는 여러 곡선이 변경될 때 발송됩니다.
이름 | 타입 | 설명 |
---|---|---|
return | array | 각각의 곡선 변경에 대해 반환될 데이터. 반환 표현식의 배열이 반환될 Wwise 오브젝트의 구성 요소를 정의합니다. 여기에는 이름, ID, 또는 Volume이나 Pitch같은 오브젝트 속성, 등의 접근자가 포함돼 있습니다. |
return [...] | any of: | 반환 표현식. |
string | Wwise 오브젝트의 하나 또는 여러 개의 내장 접근자를 지정합니다. 사용 가능한 값:
| |
string | 쿼리를 형성하는 점으로 구분된 접근자 하나 또는 여러 개를 지정하고 값이나 오브젝트 레퍼런스를 산출합니다. 단일 @를 지정하면 연관된 오브젝트의 속성 값을 반환합니다. 두 개의 @를 지정하면 오버라이드 소스의 속성 값을 반환합니다. Wwise 오브젝트 레퍼런스 를 참고하세요. | |
platform | string | 플랫폼의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
이름 | 타입 | 설명 |
---|---|---|
notification * | string | 곡선에 적용되는 변경의 타입. |
curve * | object | 변경된 곡선 오브젝트. Wwise 오브젝트. 반환 옵션을 사용해 필요한 속성을 지정하세요. |
curve.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.name | string | 오브젝트의 이름을 말합니다. |
curve.notes | string | 오브젝트의 노트. |
curve.type | string | 오브젝트의 타입. 사용 가능한 타입에 대한 더 자세한 정보는 Wwise 오브젝트 레퍼런스 를 참고하세요. |
curve.pluginName | string | Source, Effect, Mixer, Device 및 Metadata 플러그인의 이름. |
curve.path | string | 프로젝트 루트로부터의 오브젝트 경로. 예: '\Actor-Mixer Hierarchy\Default Work Unit\Sound1' |
curve.parent | object | 계층 구조 내에서 해당 오브젝트의 부모 객체. |
curve.parent.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.parent.name | string | 오브젝트의 이름을 말합니다. |
curve.owner | object | 오브젝트의 소유자. 커스텀 효과, 커스텀 감쇠, 등과 같이 다른 오브젝트가 지역적으로 소유하고 있는 오브젝트에 해당됩니다. |
curve.owner.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.owner.name | string | 오브젝트의 이름을 말합니다. |
curve.isPlayable | boolean | 오브젝트가 Transport에서 재생될 수 있으면 true입니다. |
curve.shortId | integer | 오브젝트의 Short ID. |
curve.classId | integer | 오브젝트의 클래스 ID. Unsigned Integer 32 비트. 범위: [0,4294967295] |
curve.category | string | 오브젝트의 카테고리. 예: 'Actor-Mixer Hierarchy' |
curve.filePath | string | 오브젝트를 포함하고 있는 파일 경로. 해당 경로는 Work Unit 파일이나 프로젝트 파일이 될 수 있습니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.workunit | object | 오브젝트를 포함하고 있는 상위 Work Unit. 'id'와 'name'이 반환됩니다. |
curve.workunit.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.workunit.name | string | 오브젝트의 이름을 말합니다. |
curve.childrenCount | number | 오브젝트의 자식 객체 개수. 추후 버전에는 사용이 중단됩니다. The same result can be obtained with children.count(). |
curve.totalSize | integer | SoundBank 내에서 이 오브젝트와 해당 모든 하위 항목이 차지하는 공간 (단위: 바이트). objectSize는 포함되지 않습니다. 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
curve.mediaSize | integer | 이 오브젝트와 해당 모든 하위 항목의 미디어 파일의 총 변환 크기 (단위: 바이트). 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
curve.objectSize | integer | SoundBank 내에서 오브젝트의 메타 데이터가 차지하는 공간 (단위: 바이트). 미디어 파일은 포함되지 않습니다. 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
curve.structureSize | integer | SoundBank 내에서 오브젝트의 메타 데이터와 해당 모든 하위 항목이 차지하는 공간 (단위: 바이트). 미디어 파일은 포함되지 않습니다. 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
curve.musicTransitionRoot | object | (DEPRECATED) The music transition root containing all other music transitions recursively. 추후 버전에는 사용이 중단됩니다. The TransitionRoot reference should be used instead. |
curve.musicTransitionRoot.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.musicPlaylistRoot | object | (DEPRECATED) The music playlist root containing all other music playlist items recursively. Music Playlist Container에만 적용됩니다. 추후 버전에는 사용이 중단됩니다. The PlaylistRoot reference should be used instead. |
curve.musicPlaylistRoot.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.originalWavFilePath | string | (추후 버전에는 사용 중단) 원본 WAV 파일의 절대 경로. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.originalFilePath | string | 원본 파일의 절대 경로. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.originalRelativeFilePath | string | Relative (from project's Originals Folder) path to the original file. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.activeSource | object | 사운드 오브젝트의 액티브 소스. |
curve.activeSource.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.activeSource.name | string | 오브젝트의 이름을 말합니다. |
curve.convertedWemFilePath | string | (추후 버전에는 사용 중단) 변환된 WEM 파일의 절대 경로. 옵션에 플랫폼을 지정함. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우, Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.convertedFilePath | string | 변환된 파일의 절대 경로. 옵션에 플랫폼을 지정함. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우, Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.soundbankBnkFilePath | string | SoundBank 오브젝트와 연관되어 생성된 SoundBank 파일의 절대 경로. SoundBank 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우, Mac에서 WAAPI 사용하기 를 참고하세요. |
curve.playbackDuration | object | min/max 길이와 길이 타입을 포함하고 있는 길이 루트. 추후 버전에는 사용이 중단됩니다. 대신 길이(duration)가 사용됩니다. 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
curve.playbackDuration.playbackDurationMin | number | 최소 재생 시간. |
curve.playbackDuration.playbackDurationMax | number | 최대 재생 시간. |
curve.playbackDuration.playbackDurationType | string | 길이 타입을 말합니다. |
curve.duration | object | min/max 길이와 길이 타입을 포함하고 있는 길이 루트. 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
curve.duration.min | number | 최소 재생 시간. |
curve.duration.max | number | 최대 재생 시간. |
curve.duration.type | string | 길이 타입을 말합니다. |
curve.maxDurationSource | object | 길이가 가장 긴 오디오 음원. 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
curve.maxDurationSource.id | string | 길이가 가장 긴 오디오 음원 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.maxDurationSource.trimmedDuration | number | 길이가 가장 긴 트리밍된 음원의 길이 (단위: 초). |
curve.audioSourceTrimValues | object | 트리밍되는 오디오 음원의 시간 범위. |
curve.audioSourceTrimValues.trimBegin | number | 트리밍 시작의 시간 값 (단위: 초). |
curve.audioSourceTrimValues.trimEnd | number | 트리밍 끝의 시간 값 (단위: 초). |
curve.maxRadiusAttenuation | object | 반경이 가장 큰 감쇠 (attenuation). 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
curve.maxRadiusAttenuation.id | string | 반경이 가장 큰 감쇠 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.maxRadiusAttenuation.radius | number | 감쇠 오브젝트의 반경. |
curve.audioSourceLanguage | object | 오디오 음원에 연관돼 있는 언어. Audio Source 오브젝트에 직접 적용됩니다. |
curve.audioSourceLanguage.id | string | Audio Source 오브젝트가 연결된 Language 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.audioSourceLanguage.name | string | Audio Source 오브젝트가 연결된 Language 오브젝트의 이름. |
curve.workunitIsDefault | boolean | Work Unit이 기본 설정일 때 true. |
curve.workunitType | string | Work Unit의 타입. Work Unit과 같이 물리적 폴더는 "WorkUnit" 타입을 갖습니다. 물리적 폴더는 workunitType이 "folder"입니다. 사용 가능한 값:
|
curve.workunitIsDirty | boolean | Work Unit이나 Project(wproj 파일)가 변경됐을 경우, 즉 수정되었으나 저장하지 않은 경우, true입니다. |
curve.switchContainerChildContext | object | Switch Container의 자식 객체와 연관된 컨텍스트 오브젝트. 이 오브젝트는 컨텍스트에 의존하지 않는 Switch Container 하위 항목과 연관돼있는 속성을 갖고 있습니다 (예: '1st only' 체크 상자의 속성). |
curve.switchContainerChildContext.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.isExplicitMute | boolean | 오브젝트가 명시적으로 음소거되었는지 여부. 오브젝트를 암묵적으로 명시적 음소거를 하면 하위 오브젝트가 음소거됩니다. |
curve.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. |
curve.isImplicitMute | boolean | Whether or not the object has been muted implicitly. 오브젝트를 암묵적으로 명시적 음소거를 하면 하위 오브젝트가 음소거됩니다. |
curve.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. |
curve.isIncluded | boolean | Whether or not the object is Included. 옵션에 플랫폼을 지정함. This takes into consideration the Inclusion status of the object's ancestors. |
curve.points | array | This only applies to Curve objects. An array of points defining a curve. |
curve.points [...] | object | 곡선에 있는 지점. |
curve.points[...].x * | number | 곡선 지점의 X 좌표. |
curve.points[...].y * | number | 곡선 지점의 Y 좌표. |
curve.points[...].shape * | string | 이 지점과 다음 지점 사이 곡선분(curve segment)의 형태. 사용 가능한 값:
|
curve.stateProperties | array | An array of state properties to set. |
curve.stateProperties [...] | string | The name of the property to set. |
curve.stateGroups | array | The State Group objects associated with this object. |
curve.stateGroups [...] | object | A State Group object. |
curve.stateGroups[...].id | string | The ID (GUID) of the State Group object. An object GUID of the form: {aabbcc00-1122-3344-5566-77889900aabb}. |
curve.stateGroups[...].name | string | The name of the State Group object. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) | any of: | 쿼리를 형성하는 점으로 구분된 접근자를 지정하고 속성 값이나 오브젝트 레퍼런스를 산출합니다. 단일 @는 연관된 오브젝트의 속성 값을 지정합니다. 두 개의 @는 오버라이드 소스의 속성 값을 지정합니다. 모든 타입에 사용 가능한 속성 및 참조에 대한 더 자세한 정보는 Wwise 오브젝트 레퍼런스 를 참조하세요. |
string | 문자열 값. | |
array | An array of string values. | |
number | 숫자 값. | |
array | An array of numeric values. | |
boolean | boolean 값. | |
array | An array of boolean values. | |
object | 오브젝트 레퍼런스 값. | |
array | 오브젝트 목록 레퍼런스 값. | |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | string | 문자열 값. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | number | 숫자 값. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | boolean | boolean 값. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$).id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$).name | string | 오브젝트의 이름을 말합니다. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | object | 오브젝트 레퍼런스 값. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$)[...].id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
curve.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$)[...].name | string | 오브젝트의 이름을 말합니다. |
owner * | object | 소유 오브젝트. Wwise 오브젝트. 반환 옵션을 사용해 필요한 속성을 지정하세요. |
owner.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.name | string | 오브젝트의 이름을 말합니다. |
owner.notes | string | 오브젝트의 노트. |
owner.type | string | 오브젝트의 타입. 사용 가능한 타입에 대한 더 자세한 정보는 Wwise 오브젝트 레퍼런스 를 참고하세요. |
owner.pluginName | string | Source, Effect, Mixer, Device 및 Metadata 플러그인의 이름. |
owner.path | string | 프로젝트 루트로부터의 오브젝트 경로. 예: '\Actor-Mixer Hierarchy\Default Work Unit\Sound1' |
owner.parent | object | 계층 구조 내에서 해당 오브젝트의 부모 객체. |
owner.parent.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.parent.name | string | 오브젝트의 이름을 말합니다. |
owner.owner | object | 오브젝트의 소유자. 커스텀 효과, 커스텀 감쇠, 등과 같이 다른 오브젝트가 지역적으로 소유하고 있는 오브젝트에 해당됩니다. |
owner.owner.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.owner.name | string | 오브젝트의 이름을 말합니다. |
owner.isPlayable | boolean | 오브젝트가 Transport에서 재생될 수 있으면 true입니다. |
owner.shortId | integer | 오브젝트의 Short ID. |
owner.classId | integer | 오브젝트의 클래스 ID. Unsigned Integer 32 비트. 범위: [0,4294967295] |
owner.category | string | 오브젝트의 카테고리. 예: 'Actor-Mixer Hierarchy' |
owner.filePath | string | 오브젝트를 포함하고 있는 파일 경로. 해당 경로는 Work Unit 파일이나 프로젝트 파일이 될 수 있습니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.workunit | object | 오브젝트를 포함하고 있는 상위 Work Unit. 'id'와 'name'이 반환됩니다. |
owner.workunit.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.workunit.name | string | 오브젝트의 이름을 말합니다. |
owner.childrenCount | number | 오브젝트의 자식 객체 개수. 추후 버전에는 사용이 중단됩니다. The same result can be obtained with children.count(). |
owner.totalSize | integer | SoundBank 내에서 이 오브젝트와 해당 모든 하위 항목이 차지하는 공간 (단위: 바이트). objectSize는 포함되지 않습니다. 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
owner.mediaSize | integer | 이 오브젝트와 해당 모든 하위 항목의 미디어 파일의 총 변환 크기 (단위: 바이트). 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
owner.objectSize | integer | SoundBank 내에서 오브젝트의 메타 데이터가 차지하는 공간 (단위: 바이트). 미디어 파일은 포함되지 않습니다. 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
owner.structureSize | integer | SoundBank 내에서 오브젝트의 메타 데이터와 해당 모든 하위 항목이 차지하는 공간 (단위: 바이트). 미디어 파일은 포함되지 않습니다. 정확한 값을 위해서는 SoundBank가 생성되어야 합니다. |
owner.musicTransitionRoot | object | (DEPRECATED) The music transition root containing all other music transitions recursively. 추후 버전에는 사용이 중단됩니다. The TransitionRoot reference should be used instead. |
owner.musicTransitionRoot.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.musicPlaylistRoot | object | (DEPRECATED) The music playlist root containing all other music playlist items recursively. Music Playlist Container에만 적용됩니다. 추후 버전에는 사용이 중단됩니다. The PlaylistRoot reference should be used instead. |
owner.musicPlaylistRoot.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.originalWavFilePath | string | (추후 버전에는 사용 중단) 원본 WAV 파일의 절대 경로. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.originalFilePath | string | 원본 파일의 절대 경로. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.originalRelativeFilePath | string | Relative (from project's Originals Folder) path to the original file. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우는 Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.activeSource | object | 사운드 오브젝트의 액티브 소스. |
owner.activeSource.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.activeSource.name | string | 오브젝트의 이름을 말합니다. |
owner.convertedWemFilePath | string | (추후 버전에는 사용 중단) 변환된 WEM 파일의 절대 경로. 옵션에 플랫폼을 지정함. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우, Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.convertedFilePath | string | 변환된 파일의 절대 경로. 옵션에 플랫폼을 지정함. Sound와 Audio Source 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우, Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.soundbankBnkFilePath | string | SoundBank 오브젝트와 연관되어 생성된 SoundBank 파일의 절대 경로. SoundBank 오브젝트에 대해서만 유효합니다. Mac에서 WAAPI를 사용할 경우, Mac에서 WAAPI 사용하기 를 참고하세요. |
owner.playbackDuration | object | min/max 길이와 길이 타입을 포함하고 있는 길이 루트. 추후 버전에는 사용이 중단됩니다. 대신 길이(duration)가 사용됩니다. 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
owner.playbackDuration.playbackDurationMin | number | 최소 재생 시간. |
owner.playbackDuration.playbackDurationMax | number | 최대 재생 시간. |
owner.playbackDuration.playbackDurationType | string | 길이 타입을 말합니다. |
owner.duration | object | min/max 길이와 길이 타입을 포함하고 있는 길이 루트. 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
owner.duration.min | number | 최소 재생 시간. |
owner.duration.max | number | 최대 재생 시간. |
owner.duration.type | string | 길이 타입을 말합니다. |
owner.maxDurationSource | object | 길이가 가장 긴 오디오 음원. 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
owner.maxDurationSource.id | string | 길이가 가장 긴 오디오 음원 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.maxDurationSource.trimmedDuration | number | 길이가 가장 긴 트리밍된 음원의 길이 (단위: 초). |
owner.audioSourceTrimValues | object | 트리밍되는 오디오 음원의 시간 범위. |
owner.audioSourceTrimValues.trimBegin | number | 트리밍 시작의 시간 값 (단위: 초). |
owner.audioSourceTrimValues.trimEnd | number | 트리밍 끝의 시간 값 (단위: 초). |
owner.maxRadiusAttenuation | object | 반경이 가장 큰 감쇠 (attenuation). 직접적인 소스로서 혹은 간접적인 하위 오브젝트를 통해 Audio Source 오브젝트를 포함할 수 있는 모든 오브젝트에 해당됩니다. |
owner.maxRadiusAttenuation.id | string | 반경이 가장 큰 감쇠 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.maxRadiusAttenuation.radius | number | 감쇠 오브젝트의 반경. |
owner.audioSourceLanguage | object | 오디오 음원에 연관돼 있는 언어. Audio Source 오브젝트에 직접 적용됩니다. |
owner.audioSourceLanguage.id | string | Audio Source 오브젝트가 연결된 Language 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.audioSourceLanguage.name | string | Audio Source 오브젝트가 연결된 Language 오브젝트의 이름. |
owner.workunitIsDefault | boolean | Work Unit이 기본 설정일 때 true. |
owner.workunitType | string | Work Unit의 타입. Work Unit과 같이 물리적 폴더는 "WorkUnit" 타입을 갖습니다. 물리적 폴더는 workunitType이 "folder"입니다. 사용 가능한 값:
|
owner.workunitIsDirty | boolean | Work Unit이나 Project(wproj 파일)가 변경됐을 경우, 즉 수정되었으나 저장하지 않은 경우, true입니다. |
owner.switchContainerChildContext | object | Switch Container의 자식 객체와 연관된 컨텍스트 오브젝트. 이 오브젝트는 컨텍스트에 의존하지 않는 Switch Container 하위 항목과 연관돼있는 속성을 갖고 있습니다 (예: '1st only' 체크 상자의 속성). |
owner.switchContainerChildContext.id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.isExplicitMute | boolean | 오브젝트가 명시적으로 음소거되었는지 여부. 오브젝트를 암묵적으로 명시적 음소거를 하면 하위 오브젝트가 음소거됩니다. |
owner.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. |
owner.isImplicitMute | boolean | Whether or not the object has been muted implicitly. 오브젝트를 암묵적으로 명시적 음소거를 하면 하위 오브젝트가 음소거됩니다. |
owner.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. |
owner.isIncluded | boolean | Whether or not the object is Included. 옵션에 플랫폼을 지정함. This takes into consideration the Inclusion status of the object's ancestors. |
owner.points | array | This only applies to Curve objects. An array of points defining a curve. |
owner.points [...] | object | 곡선에 있는 지점. |
owner.points[...].x * | number | 곡선 지점의 X 좌표. |
owner.points[...].y * | number | 곡선 지점의 Y 좌표. |
owner.points[...].shape * | string | 이 지점과 다음 지점 사이 곡선분(curve segment)의 형태. 사용 가능한 값:
|
owner.stateProperties | array | An array of state properties to set. |
owner.stateProperties [...] | string | The name of the property to set. |
owner.stateGroups | array | The State Group objects associated with this object. |
owner.stateGroups [...] | object | A State Group object. |
owner.stateGroups[...].id | string | The ID (GUID) of the State Group object. An object GUID of the form: {aabbcc00-1122-3344-5566-77889900aabb}. |
owner.stateGroups[...].name | string | The name of the State Group object. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) | any of: | 쿼리를 형성하는 점으로 구분된 접근자를 지정하고 속성 값이나 오브젝트 레퍼런스를 산출합니다. 단일 @는 연관된 오브젝트의 속성 값을 지정합니다. 두 개의 @는 오버라이드 소스의 속성 값을 지정합니다. 모든 타입에 사용 가능한 속성 및 참조에 대한 더 자세한 정보는 Wwise 오브젝트 레퍼런스 를 참조하세요. |
string | 문자열 값. | |
array | An array of string values. | |
number | 숫자 값. | |
array | An array of numeric values. | |
boolean | boolean 값. | |
array | An array of boolean values. | |
object | 오브젝트 레퍼런스 값. | |
array | 오브젝트 목록 레퍼런스 값. | |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | string | 문자열 값. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | number | 숫자 값. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | boolean | boolean 값. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$).id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$).name | string | 오브젝트의 이름을 말합니다. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$) [...] | object | 오브젝트 레퍼런스 값. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$)[...].id | string | 오브젝트의 ID (GUID). {aabbcc00-1122-3344-5566-77889900aabb} 형식의 오브젝트 GUID. |
owner.regex(^((@?@?[a-zA-Z0-9:_\(\),]+)|[a-zA-Z\(\),]+\(.+\))(\.@?@?[a-zA-Z0-9:_\(\),]+|[a-zA-Z\(\),]+\(.+\))*$)[...].name | string | 오브젝트의 이름을 말합니다. |
(필수 *)
Wwise Authoring API에 대한 더 자세한 정보는 Wwise Authoring API (WAAPI, Wwise 저작 API) 사용하기 를 참고하세요.
프로젝트를 등록하세요. 아무런 조건이나 의무 사항 없이 빠른 시작을 도와드리겠습니다.
Wwise를 시작해 보세요