C-limber's highへようこそ。
C-limber's highは山登りのサイトではなく、福岡システム開発WEB制作会社 C-limber(クライマー)株式会社の技術メモブログです。
福岡システム開発ホームページ制作をお探しの方はお気軽にご相談下さい。

2014年2月4日火曜日

[Unity][C#]GameObjectにアタッチされたコンポーネントを参照する方法

22:55 Posted by Unknown , No comments
Scoreオブジェクトにアタッチされたスクリプトを取得して、変数を処理
using UnityEngine;
using System.Collections;

public class Score : MonoBehaviour {
 public int score;
 // Use this for initialization
 void Start () {
  score = 30; 
 }
 
 // Update is called once per frame
 void Update () {
  guiText.text = score.ToString ();
 }
}


using UnityEngine;
using System.Collections;

public class Spawner : MonoBehaviour {
 public Transform prefab;
 // Use this for initialization
 void Start () {
 }
 
 // Update is called once per frame
 void Update () {
  GameObject score = GameObject.Find("Score");
  Score scoreScript = score.GetComponent();
  scoreScript.score -= 1;
 }
}

0 コメント:

コメントを投稿