2017-07-01から1ヶ月間の記事一覧
Unity の Cloud Build でプロジェクトファイルにビルドに含めるシーンが設定されていない時に発生。以前とエラー文が変わった気がする。 [Unity] ERROR: There were no scenes configured to build! Please add a scene to the build using the Build Settin…
このブログでも以前、使い方を紹介した Projector が現在のバージョンでは上手く動作しなくなっていました。 【 Projector 関連の記事】 「Blob Shadow Projector」の使う時の注意点 - 強火で進め http://d.hatena.ne.jp/nakamura001/20120325/1332686549 フ…
using UnityEngine; using UnityEditor; public class Test : MonoBehaviour { [MenuItem("Assets/Add Label")] static void AddLabel() { Object[] selectedAsset = Selection.GetFiltered (typeof(Object), SelectionMode.Assets); foreach (var go in sel…
using UnityEngine; using UnityEditor; public class Test : MonoBehaviour { [MenuItem("Assets/Show Selection Objects")] static void ShowSelectionObjects() { Object[] selectedAsset = Selection.GetFiltered (typeof(Object), SelectionMode.Assets…
https://unity3d.com/jp/unity/features/analytics#remote-settingsUnity のサーバサイド(クラウド)のサービスにサーバ側で値の変更が可能なサービス「Remote Settings(リモート設定)」が追加されました。 ※現在、ベータ。WebGL 環境には未対応。【公式のブ…