2017年7月
UnityにJSONで複雑な情報記録2
Dictionaryの中にListを入れることで解決をはかってみる実験 using System.Collections; using System.Collections.Generic; using U […]
UnityにJSONで複雑な情報をしまっちゃう
独自クラスを作成します [System.Serializable] public class myData { public int id; public string name; public int t […]
Unityで Dictionary
UnityでDictionaryを使う準備 using System.Collections.Generic;//必ず必要 上の方のusingあたりに追記 Dictionaryを宣言 Dictionary<int, […]
Unity Postprocessing入門
Unityで複数のエフェクトを一度に表示できるPostProcesingを実習します. Post Processing Stack Assetをダウンロード アセットをインポート Assets>Create> […]
Prefabの名前を変える
たぶんこれで動く? //キャラn体作成 for (int i = 0; i < sakusei; i++) { GameObject go = Instantiate (m […]
Tensorflow mnist tutorial
参考のサイト http://qiita.com/uramonk/items/c207c948ccb6cd0a1346 これをやってみる. まず tensorflow/tensorflow/examples/ […]
TesorFlow on Raspi3 with Pyton3.4
参考サイト1(ここ) ※参考サイト1のhello-tf.pyは動かない (あと Kerasとか入れてみた) ここで出てたエラー pi@sogalab1:~/projects $ sudo python3 hello-tf […]