Update leenkx/Sources/leenkx/logicnode/PlaySoundRawNode.hx

This commit is contained in:
Onek8 2025-04-03 12:34:08 +00:00
parent 6be977da7e
commit 9e47c1db6d

View File

@ -16,15 +16,16 @@ class PlaySoundRawNode extends LogicNode {
public var property5: Bool;
public var property6: String;
#if lnx_audio
var sound: kha.Sound = null;
var channel: kha.audio1.AudioChannel = null;
#end
public function new(tree: LogicTree) {
super(tree);
}
override function run(from: Int) {
#if lnx_audio
switch (from) {
case Play:
if (property6 == 'Sound' ? sound == null : true) {
@ -63,6 +64,10 @@ class PlaySoundRawNode extends LogicNode {
case UpdateVolume:
if (channel != null) channel.volume = inputs[4].get();
}
#end
#if !lnx_audio
runOutput(0);
#end
}
function onUpdate() {