コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

2023-02-21から1日間の記事一覧

【Xcode】xcodebuild で使用する Xcode のバージョンを設定する方法

概要 # 現在のバージョンを確認 xcode-select -print-path # バージョンを設定 xcode-select -switch /Applications/Xcode.app/Contents/Developer 補足 xcode-select: error: --switch must be run as root (e.g. `sudo xcode-select --switch <xcode_folder_path>`). もし上記</xcode_folder_path>…

【Unity】iOS / Android で音声合成(TextToSpeech)使用できる「Speech And Text in Unity iOS and Unity Android」紹介

概要 「Speech And Text in Unity iOS and Unity Android」を Unity プロジェクトに導入することで iOS / Android で音声合成(TextToSpeech)使用できるようになります 使い方 using TextSpeech; using UnityEngine; public class Example : MonoBehaviour …