コガネブログ

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

2019-10-31から1日間の記事一覧

【Unity】Currently selected scripting backend (IL2CPP) is not installed

概要 PC ビルドしようとした時に、Build Settings ウィンドウに Currently selected scripting backend (IL2CPP) is not installed と表示されている場合、 Unity Hub の Installs タブから「Add Component」を選択して 「Window Build Support (IL2CPP)」を…

【Unity】線と線の当たり判定を実装できる「Unity-LineSegmentsIntersection」紹介

はじめに 「Unity-LineSegmentsIntersection」を Unity プロジェクトに導入することで 線と線の当たり判定を実装できるようになります 使用例 using LineSegmentsIntersection; using UnityEngine; public class Example : MonoBehaviour { private void Sta…