怎么制作OC材质预设?

《C4D百科全书》>>《C4D的十万个为什么》

有简单的初级知识,也有深度经验分享。


问题:

怎么制作OC材质预设?


答案:

先打开oc在线材质,然后点一下离线材质总文件夹,在右侧空白处右键新建类别,点击新创建的文件夹,把做好的材质球拖到右侧空白处即可。

可以在在线材质的窗口菜单—文件里面查看离线材质库的本地位置。

有些操作会卡顿一下,点完就等待就好了。


如果你有其他答案或者问题,欢迎留言补充,万分感谢!


更多相关问题及答案可在下方链接搜索查看。

kuqijun.com/q-a


《C4D的十万个为什么》首发于 公众号:苦七君

旨在收集全网各种和C4D相关软件的知识问答,方便学习者搜索查看。

参与制作者:昵称(微信号)

苦七君(kuqijun666)、丽丽酱(lilij-ang)、

如果你也想参与进来,欢迎联系苦七微信/QQ:766057766


做这个对学习C4D帮助很大,也会有些许报酬~


苦七微信学习群,只学习不闲聊,需要进的私信苦七“进学习群”,

提问截图截全屏发大图,提问截图截全屏发大图,提问截图截全屏发大图。

苦七微信/QQ:766057766

 

当然可以,以下是 Objective-C 版本的代码实现: 1. 在 info.plist 文件中添加蓝牙权限: - NSBluetoothPeripheralUsageDescription:描述了应用程序需要使用蓝牙的原因。 - NSMicrophoneUsageDescription:描述了应用程序需要使用麦克风的原因。 2. 创建一个 AVAudioSession 实例并设置它的类别为 AVAudioSessionCategoryRecord: ``` AVAudioSession *audioSession = [AVAudioSession sharedInstance]; NSError *error; BOOL success = [audioSession setCategory:AVAudioSessionCategoryRecord error:&error]; if (!success) { NSLog(@"Failed to set audio session category: %@", error.localizedDescription); } ``` 3. 设置 AVAudioSession 实例的输入源和输出源: ``` NSArray<AVAudioSessionPortDescription *> *bluetoothInputs = [audioSession.availableInputs filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(AVAudioSessionPortDescription * _Nullable input, NSDictionary<NSString *,id> * _Nullable bindings) { return input.portType == AVAudioSessionPortBluetoothHFP || input.portType == AVAudioSessionPortBluetoothA2DP; }]]; if (bluetoothInputs.count > 0) { NSError *error; success = [audioSession setPreferredInput:bluetoothInputs.firstObject error:&error]; if (!success) { NSLog(@"Failed to set preferred input: %@", error.localizedDescription); } } AVAudioSessionPortDescription *currentOutput = audioSession.currentRoute.outputs.firstObject; success = [audioSession setPreferredOutput:currentOutput error:&error]; if (!success) { NSLog(@"Failed to set preferred output: %@", error.localizedDescription); } ``` 4. 初始化 AVAudioRecorder 对象并开始录音: ``` NSURL *audioURL = // Specify the URL where you want to save the recorded audio. NSDictionary *audioSettings = @{AVFormatIDKey: @(kAudioFormatMPEG4AAC), AVSampleRateKey: @(44100), AVNumberOfChannelsKey: @(2)}; NSError *error; AVAudioRecorder *audioRecorder = [[AVAudioRecorder alloc] initWithURL:audioURL settings:audioSettings error:&error]; if (!audioRecorder) { NSLog(@"Failed to initialize audio recorder: %@", error.localizedDescription); } else { [audioRecorder prepareToRecord]; [audioRecorder record]; } ``` 这样就可以从蓝牙设备的麦克风录制音频了。希望对您有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

苦七君

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值