AudioDeviceOutput

非推奨を表示

*このコンテンツは、ベータ版のAI(人工知能)を使用して翻訳されており、エラーが含まれている可能性があります。このページを英語で表示するには、 こちら をクリックしてください。

AudioDeviceOutput は、ストリームオーディオを物理ハードウエアデバイスにレンダリングするオーディオストリームを受信します。提供する 1つの 入力 ピンは、Wires に接続されたすべてのオーディオストリームを聞くことができます。

コードサンプル

Outputting Audio to Device

local audioPlayer : AudioPlayer = Instance.new("AudioPlayer")
audioPlayer.Parent = workspace
audioPlayer.AssetId = "rbxassetid://9112854440"
local deviceOutput = Instance.new("AudioDeviceOutput")
deviceOutput.Parent = workspace
local wire = Instance.new("Wire")
wire.Parent = workspace
wire.SourceInstance = audioPlayer
wire.TargetInstance = deviceOutput
audioPlayer:Play()

プロパティ

Player

並列読み取り

オプションの Player は、接続されたオーディオストリームを聞くことを目的としています。指定されていない場合、この AudioDeviceOutput に接続されたストリームは、すべての人が聞くことができます。

方法

GetConnectedWires

Instances

指定されたピピン留めに接続された Wires のアレイを返します。AudioDeviceOutput には、1つの「入力」ピン留めがあります。

パラメータ

pin: string

戻り値

Instances

イベント