facebook twitter hatena line email

「Unity/helloworld」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==helloworld== *file/new project/2Dを選択」)
 
行1: 行1:
 
==helloworld==
 
==helloworld==
*file/new project/2Dを選択
+
*File/new project/2Dを選択
 +
*Assets/Create/C#Script
 +
*下にcsファイルができるのでHelloworldScript.csへ名前変更
 +
*HelloworldScriptをダブルクリックして開く
 +
 
 +
using UnityEngine;
 +
using System.Collections;
 +
 
 +
public class HelloworldScript : MonoBehaviour {
 +
// Use this for initialization
 +
void Start () {
 +
Debug.Log("helloworld");
 +
}
 +
// Update is called once per frame
 +
void Update () {
 +
 +
}
 +
}

2016年9月8日 (木) 16:46時点における版

helloworld

  • File/new project/2Dを選択
  • Assets/Create/C#Script
  • 下にcsファイルができるのでHelloworldScript.csへ名前変更
  • HelloworldScriptをダブルクリックして開く

using UnityEngine; using System.Collections;

public class HelloworldScript : MonoBehaviour {

// Use this for initialization void Start () { Debug.Log("helloworld"); } // Update is called once per frame void Update () {

}

}