コガネブログ

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

2019-11-18から1日間の記事一覧

【Unity】Internal: Stack allocator ALLOC_TEMP_THREAD has unfreed allocations, size 1552

概要 Internal: Stack allocator ALLOC_TEMP_THREAD has unfreed allocations, size 1552 Unity 2017 のプロジェクトを Unity 2018 にアップデートして そのまま Android ビルドしたところ、上記のエラーが発生してビルドに失敗した Unity を再起動してもう…

【Unity】Inspector で編集できる Dictionary を使用できる「Unity-Serialized Dictionary」紹介

はじめに 「Unity-Serialized Dictionary」を Unity プロジェクトに導入することで Inspector で編集できる Dictionary を使用できるようになります 使用例 使い方 using System; using UnityEngine; [Serializable] public sealed class IntStringTable : U…