พอดีจะทำเปิดเกมแบบง่ายๆ เอาแค่เปลี่ยนสไปร์ทภาพที่มีข้อความบรรยายก็พอ แต่ลองศึกษาจากโค้ดในเน็ตดูแล้วก็ใช้ไม่ได้ เลยอยากขอคำแนะนำหน่อยครับ ว่าควรแก้ไขยังไงดี
Show Contentโค้ด:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Change_spite : MonoBehaviour {
//ประกาศอาร์เรย์
public Texture2D [] pic = new Texture2D[2];
void Start ()
{
StartCoroutine (runSpite ());
}
IEnumerator runSpite ()
{
int i = 0;
while (true)
{
yield return new WaitForSeconds (0.5f);
i++;
if (i == 2)
{
i = 0;
}
gameObject.GetComponent<Renderer>().material.mainTexture = pic[i]
}
}
// Update is called once per frame
void Update () {
}
}
หรือ ถ้าโค้ดนี้ไม่ได้จริงๆ ว่าจะทำกล่องข้อความมาแทนแล้วเปลี่ยนข้อความตามการคลิกดี