Entries from 2015-05-06 to 1 day

【Unity エラー】CS1525 : コードに全角スペースなど

コード中に全角のスペースが入っている場合が多い。 (「;」がないとかの可能性もあり) 例1 error CS1525: Unexpected symbol `<internal>' 例2 error CS1525: Unexpected symbol `iTween' IEnumerator ButtonBombUnlockWait(){ yield return new WaitForSeconds(0.</internal>…

シーンが変わってもスコアが初期化されないようにする。

public static int CurrentScore; スコア、ハイスコアの保持(unityC#): おじさんのプログラミングojisan-puroguramu.seesaa.net

ハイスコア

ハイスコアの作成は、Unity公式チュートリアルを参考にした。Unity: 統合ゲーム開発環境japan.unity3d.com using UnityEngine; using System.Collections; using UnityEngine.UI; // プレイ画面でのスコアの表示 public class Score : MonoBehaviour { publi…