資料庫/不明、分類中

資料庫

不明

Loading…
Screen.SetResolution
スプライトパッカー
ここにチェックつけないといけない
f:id:yasuaki-ohama:20150611152614p:plain
後、Resourcesフォルダ内に置くとうまくできない
プロ版しか使えない
void OnLevelWasLoaded(int level)

if(EventSystem.current.IsPointerOverGameObject()){
return;
}

if (Input.GetMouseButtonDown (0)) {

}

Unity エラー

Invalid editor window ExcelImporterMaker
UnityEditor.EditorApplication:Internal_CallGlobalEventHandler()

http://program.alphabrend.com/?p=477
解決方法としては、レイアウトをDefaultにしてみたら発生しなくなった。

Progress when using WWW.LoadFromCacheOrDownload - Unity Answers


UnityEngine.Object[] objs = bundle.LoadAll ();
foreach (UnityEngine.Object obj in objs) {
if (obj.GetType () == typeof(GameObject)) {
Instantiate (obj);
}
yield return null;
}


UGUIのキャンバスはStart,Awakeで宣言しないと最初から表示できない