【发布时间】:2017-02-01 17:06:10
【问题描述】:
好的,我制作了代表匹配的预制件。将脚本附加到主摄像头后,我进行了 15 次匹配,
using UnityEngine;
using System.Collections;
using System;
using UnityEngine.UI;
public class LoadMatches : MonoBehaviour {
public GameObject match;
GameObject[] matchArray = new GameObject[15];
void Start () {
DrawMatches();
}
private void DrawMatches()
{
int y = 4;
int x = -4;
int n = 0;
for (int i = -4; i < 5; i += 2)
{
for (int j = x; j < y + 1; j += 2)
{
matchArray[n]=Instantiate(match, new Vector3(j, i, 0), Quaternion.identity) as GameObject;
matchArray[n].name= Convert.ToString(n);
n++;
}
y = y - 1;
x = x + 1;
}
}
}
我得到了这个
当我单击对象时,对象必须被销毁(制作),但是当我单击某行中的对象时,我必须使只有该对象可以被销毁,其他行中的所有其他匹配器都必须变得不可销毁/ unclickabe until button ispressed.
using UnityEngine;
using System.Collections;
using System;
using UnityEngine.UI;
public class DragDrop : MonoBehaviour {
float x;
float y;
public GameObject match;
private txtGameOver txtGO;
private void Awake()
{
txtGO = GameObject.FindObjectOfType<txtGameOver>();
}
private void Start()
{
match.GetComponent<Rigidbody2D>().constraints = RigidbodyConstraints2D.FreezeAll;
}
void Update(){
x = Input.mousePosition.x;
y = Input.mousePosition.y;
}
void OnMouseDrag(){
transform.position = Camera.main.ScreenToWorldPoint(new Vector3(x,y,10.0f));
}
void OnMouseDown()
{
var boxes = GameObject.FindGameObjectsWithTag("Match");
SelectMatches(match);
if (boxes.Length == 1)
{
txtGO.GameOverText();
}
}
void SelectMatches (GameObject m)
{
int n;
n = Convert.ToInt32(m.name);
if (n>=0 && n<=4)
{
Destroy(m);
}
else if (n > 4 && n <= 8)
{
Destroy(m);
}
else if (n > 8 && n <= 11)
{
Destroy(m);
}
else if (n > 11 && n <= 13)
{
Destroy(m);
}
else if (n==14)
{
Destroy(m);
}
}
}
我的问题是如何在脚本中使某些对象不可破坏/不可点击。
【问题讨论】: