그야말로 HHKB처럼 버튼 소리를 내는 Zen-typing.
그야말로 HHKB처럼 경쾌한 키입력을 연출하는 젠타이핑 소개를 만들었기 때문이다.
사용 방법
사용자 정의
사실 이 프로그램은 매우 짧아서 자신도 간단하게 만들 수 있다.
우선 Xcode로 playground를 만듭니다.
중점은 플랫폼을 OSX로 설정하는 것이다.이렇게 하지 않으면 잘 행동할 수 없다.
게임 라운드를 열고 아래 코드를 붙여넣으세요.
이렇게 하면 돼.몇 초만 기다리면 움직일 거야.//: Playground - noun: a place where people can play
import AVFoundation
var engine = AVAudioEngine()
var input = engine.inputNode
var output = engine.outputNode
var format = input.inputFormatForBus(0)
var error:NSError?
engine.connect(input, to: output, format: format)
while true {
engine.startAndReturnError(&error)
sleep(10000)
}
이 프로그램은 소리 효과 등을 간단하게 추가할 수 있다.
예를 들어 아래 코드를 붙이면 목욕탕에서 타자를 치는 것과 같다.//: Playground - noun: a place where people can play
import AVFoundation
var engine = AVAudioEngine()
var input = engine.inputNode
var output = engine.outputNode
var format = input.inputFormatForBus(0)
var error:NSError?
var reverb = AVAudioUnitReverb()
reverb.loadFactoryPreset(.LargeHall2)
reverb.wetDryMix = 50
engine.attachNode(reverb)
engine.connect(input, to: reverb, format: format)
engine.connect(reverb, to: output, format: format)
while true {
engine.startAndReturnError(&error)
sleep(10000)
}
.LargeHall2를 다른 방으로 바꾸거나 wetDrymix의 값을 바꾸면 다양한 사용자 정의를 할 수 있습니다.
AVAudio Unit Reverb 외에도 AVAudio Unit Delay 등에서도 사용할 수 있습니다.
만약 여러분이 소중히 간직하고 있는 버튼 소리를 만들었다면, 반드시 위의 자료 라이브러리에 라디에이터 요구를 보내세요.
그럼enjoy coding!
Reference
이 문제에 관하여(그야말로 HHKB처럼 버튼 소리를 내는 Zen-typing.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/smurakami/items/fc24a13fde68464ad39c
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
//: Playground - noun: a place where people can play
import AVFoundation
var engine = AVAudioEngine()
var input = engine.inputNode
var output = engine.outputNode
var format = input.inputFormatForBus(0)
var error:NSError?
engine.connect(input, to: output, format: format)
while true {
engine.startAndReturnError(&error)
sleep(10000)
}
//: Playground - noun: a place where people can play
import AVFoundation
var engine = AVAudioEngine()
var input = engine.inputNode
var output = engine.outputNode
var format = input.inputFormatForBus(0)
var error:NSError?
var reverb = AVAudioUnitReverb()
reverb.loadFactoryPreset(.LargeHall2)
reverb.wetDryMix = 50
engine.attachNode(reverb)
engine.connect(input, to: reverb, format: format)
engine.connect(reverb, to: output, format: format)
while true {
engine.startAndReturnError(&error)
sleep(10000)
}
Reference
이 문제에 관하여(그야말로 HHKB처럼 버튼 소리를 내는 Zen-typing.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/smurakami/items/fc24a13fde68464ad39c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)