Unity

unity1week の楽しみ方

1週間でゲームを作るゲームジャム、unity1week 作ったゲームを遊べるのだが、面白い方法を教えてしんぜよう ●知らないゲームを、遊び方を知らないまま遊ぶ! unity1weekのゲームのページ↓ここhttps://unityroom.com/unity1weeks/15 で、「未プレイのゲーム(…

unityでFPSの表示

private System.DateTime startTime; private System.DateTime startTime; public Text text_fps; void Awake() { Application.targetFrameRate = 60; //60FPSに設定 startTime = System.DateTime.Now; } void Update () { float fps; if(Time.frameCount % …