fux2 发表于 2014-9-8 23:13
https://rpg.blue/thread-371224-1-1.html
完成。
根据se序号停止是这样写吗?
module Fux2 def self.stop_se_by_id(id) return false unless (id >= 0 && id <= 32) buf = "\0"*4 PSP.call(buf,SE_LIST_ADDR+id*4,4) p_this_se = buf.unpack("L")[0] set_addr(p_this_se) STOP_SE.call return true end end
module Fux2
def self.stop_se_by_id(id)
return false unless (id >= 0 && id <= 32)
buf = "\0"*4
PSP.call(buf,SE_LIST_ADDR+id*4,4)
p_this_se = buf.unpack("L")[0]
set_addr(p_this_se)
STOP_SE.call
return true
end
end
另外想问有什么办法让Audio.se_play可以指定在某se序号强制播放? |