「Unity/Csharp/クラス」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==クラスやプロパティ== public class CanvasScript : MonoBehaviour { private int cnt = 1; void Start () { Debug.Log("helloworld" + cnt); Add(10, 15) }...」) |
(相違点なし)
|
2017年9月16日 (土) 08:01時点における版
クラスやプロパティ
public class CanvasScript : MonoBehaviour { private int cnt = 1; void Start () { Debug.Log("helloworld" + cnt); Add(10, 15) } void Update () { } public int Add(int x, int y) { return x + y; } }
メンバはpublicとprivateがあり省略するとprivateになる。