GetVoiceType - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script (Papyrus)
Obtains the VoiceType for this actor or talking activator.
Syntax[edit | edit source]
VoiceType Function GetVoiceType() native
Parameters[edit | edit source]
None
Return Value[edit | edit source]
The VoiceType the actor or talking activator is using. None if it isn't an actor or talking activator.
Examples[edit | edit source]
; Is our object using the MalePeasent voice type?
if myObject.GetVoiceType() == MalePeasent
Debug.Trace("Object is using the male peasent voice type, do something!")
endIf
Notes[edit | edit source]
- This is a good way to check for a specific unique actor if you wish to avoid declaring actor properties.